feely_pona/feely_pona.h

25 lines
670 B
C

#if defined(__clang__)
#pragma once
#include "feely_pona_unity.h"
#endif
#define FP_SentinelDoublyLinkedList_Insert(list, item) \
item->next = list; \
item->prev = list->prev; \
item->next->prev = item; \
item->prev->next = item;
enum FP_ProfileZone
{
FP_ProfileZone_FPUpdate = TELY_ProfileZone_Count,
FP_ProfileZone_FPUpdate_EntityLoop,
FP_ProfileZone_FPUpdate_PathFinding,
FP_ProfileZone_FPUpdate_AStar,
FP_ProfileZone_FPUpdate_AStarEnumerateCollidables,
FP_ProfileZone_FPUpdate_AStarExpand,
FP_ProfileZone_FPUpdate_AStarExploreNeighbours,
FP_ProfileZone_FPUpdate_Attacks,
FP_ProfileZone_FPRender,
};