mirror of
https://github.com/zeldaret/ss
synced 2026-07-03 20:40:09 -04:00
20 lines
469 B
C
20 lines
469 B
C
#ifndef D_BEACON_H
|
|
#define D_BEACON_H
|
|
|
|
#include "m/m_vec.h"
|
|
|
|
u32 getMaxBeaconCount();
|
|
|
|
/**
|
|
* When passed a position, sets the beacon with the given index to the position.
|
|
* When position is nullptr, removes the beacon.
|
|
*/
|
|
void setBeaconPosition(const mVec3_c *position, u32 beaconIndex);
|
|
|
|
/**
|
|
* Sets a beacon position similar to `setBeaconPosition`, but corrects the ground level
|
|
*/
|
|
void setBeaconPositionChecked(const mVec3_c *position, u32 beaconIndex);
|
|
|
|
#endif
|