2023-09-23 06:42:22 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma once
|
|
|
|
#include "feely_pona_unity.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum FP_ProfileZone
|
|
|
|
{
|
|
|
|
FP_ProfileZone_FPUpdate = TELY_ProfileZone_Count,
|
|
|
|
FP_ProfileZone_FPUpdate_EntityLoop,
|
|
|
|
FP_ProfileZone_FPUpdate_PathFinding,
|
2023-09-23 07:19:36 +00:00
|
|
|
FP_ProfileZone_FPUpdate_AStar,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarEnumerateCollidables,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarExpand,
|
|
|
|
FP_ProfileZone_FPUpdate_AStarExploreNeighbours,
|
2023-09-23 06:42:22 +00:00
|
|
|
FP_ProfileZone_FPUpdate_Attacks,
|
|
|
|
FP_ProfileZone_FPRender,
|
|
|
|
};
|
|
|
|
|
2023-09-25 14:07:39 +00:00
|
|
|
struct FP_Meters
|
|
|
|
{
|
|
|
|
Dqn_f32 meters;
|
|
|
|
};
|
|
|
|
|
2023-09-29 11:42:27 +00:00
|
|
|
struct FP_GlobalAnimations
|
|
|
|
{
|
|
|
|
Dqn_String8 terry_walk_idle = DQN_STRING8("terry_walk_idle");
|
|
|
|
Dqn_String8 terry_walk_up = DQN_STRING8("terry_walk_up");
|
|
|
|
Dqn_String8 terry_walk_down = DQN_STRING8("terry_walk_down");
|
|
|
|
Dqn_String8 terry_walk_left = DQN_STRING8("terry_walk_left");
|
|
|
|
Dqn_String8 terry_walk_right = DQN_STRING8("terry_walk_right");
|
|
|
|
Dqn_String8 terry_attack_up = DQN_STRING8("terry_attack_up");
|
|
|
|
Dqn_String8 terry_attack_side = DQN_STRING8("terry_attack_side");
|
|
|
|
Dqn_String8 terry_attack_down = DQN_STRING8("terry_attack_down");
|
|
|
|
Dqn_String8 terry_merchant = DQN_STRING8("terry_merchant");
|
|
|
|
|
|
|
|
Dqn_String8 smoochie_walk_up = DQN_STRING8("smoochie_walk_up");
|
|
|
|
Dqn_String8 smoochie_walk_down = DQN_STRING8("smoochie_walk_down");
|
|
|
|
Dqn_String8 smoochie_walk_left = DQN_STRING8("smoochie_walk_left");
|
|
|
|
Dqn_String8 smoochie_walk_right = DQN_STRING8("smoochie_walk_right");
|
|
|
|
Dqn_String8 smoochie_attack_down = DQN_STRING8("smoochie_attack_down");
|
|
|
|
Dqn_String8 smoochie_hurt_side = DQN_STRING8("smoochie_hurt_side");
|
|
|
|
Dqn_String8 smoochie_attack_heart = DQN_STRING8("smoochie_attack_heart");
|
|
|
|
Dqn_String8 smoochie_death = DQN_STRING8("smoochie_death");
|
|
|
|
|
|
|
|
Dqn_String8 clinger_attack_down = DQN_STRING8("clinger_attack_down");
|
|
|
|
Dqn_String8 clinger_attack_side = DQN_STRING8("clinger_attack_side");
|
|
|
|
Dqn_String8 clinger_attack_up = DQN_STRING8("clinger_attack_up");
|
|
|
|
Dqn_String8 clinger_death = DQN_STRING8("clinger_death");
|
|
|
|
Dqn_String8 clinger_walk_up = DQN_STRING8("clinger_walk_up");
|
|
|
|
Dqn_String8 clinger_walk_down = DQN_STRING8("clinger_walk_down");
|
|
|
|
|
2023-09-30 09:14:35 +00:00
|
|
|
Dqn_String8 club_terry_alive = DQN_STRING8("club_terry_alive");
|
|
|
|
Dqn_String8 club_terry_dark = DQN_STRING8("club_terry_dark");
|
|
|
|
|
|
|
|
Dqn_String8 map = DQN_STRING8("map");
|
2023-09-29 11:42:27 +00:00
|
|
|
}
|
|
|
|
g_anim_names;
|
|
|
|
|