#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, FP_ProfileZone_FPUpdate_AStar, FP_ProfileZone_FPUpdate_AStarEnumerateCollidables, FP_ProfileZone_FPUpdate_AStarExpand, FP_ProfileZone_FPUpdate_AStarExploreNeighbours, FP_ProfileZone_FPUpdate_Attacks, FP_ProfileZone_FPRender, }; struct FP_Meters { Dqn_f32 meters; }; 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"); Dqn_String8 club_terry_alive = DQN_STRING8("club_terry_alive"); Dqn_String8 club_terry_dark = DQN_STRING8("club_terry_dark"); } g_anim_names;