Files
ss/include/toBeSorted/d_beacon.h
T
robojumper 3af8f03e78 more map
2025-09-30 23:55:21 +02:00

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