mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-10 16:52:16 +00:00
Add function comment
This commit is contained in:
parent
0f9872fc27
commit
648fa66d82
2 changed files with 9 additions and 1 deletions
|
|
@ -3498,7 +3498,7 @@ state_t states[NUMSTATES] =
|
|||
{SPR_CAPS, 4, -1, {NULL}, 0, 0, S_NULL}, // S_BATTLECAPSULE_SUPPORT
|
||||
{SPR_CAPS, FF_ANIMATE|5, -1, {NULL}, 3, 1, S_NULL}, // S_BATTLECAPSULE_SUPPORTFLY
|
||||
|
||||
{SPR_EGOO, 0, 1, {NULL}, 0, 0, S_NULL}, // S_EGOO
|
||||
{SPR_EGOO, 0, 1, {NULL}, 0, 0, S_NULL}, // S_EGOORB
|
||||
|
||||
#ifdef SEENAMES
|
||||
{SPR_NULL, 0, 1, {NULL}, 0, 0, S_NULL}, // S_NAMECHECK
|
||||
|
|
|
|||
|
|
@ -483,6 +483,14 @@ static void K_DebugWaypointsSpawnLine(waypoint_t *const waypoint1, waypoint_t *c
|
|||
} while (n--);
|
||||
}
|
||||
|
||||
/*--------------------------------------------------
|
||||
void K_DebugWaypointDrawRadius(waypoint_t *waypoint)
|
||||
|
||||
Draw a debugging circle to represent a waypoint's radius
|
||||
|
||||
Input Arguments:-
|
||||
waypoint - A waypoint to draw the radius of
|
||||
--------------------------------------------------*/
|
||||
static void K_DebugWaypointDrawRadius(waypoint_t *waypoint)
|
||||
{
|
||||
mobj_t *radiusOrb;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue