X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_api.h;h=68f5aca348d6ebd5c676b22d3ecde082705bbe42;hb=refs%2Fheads%2Fmaster;hp=2c2d18ece0cab214ebfb66c89a261dea1110c027;hpb=3e59ac7081ea3005060b56449bc77c8f73cdc6b6;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_api.h b/player_api.h deleted file mode 100644 index 2c2d18e..0000000 --- a/player_api.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef PLAYER_API_H -#define PLAYER_API_H - -#include "model.h" -#include "camera.h" -#include "entity.h" - -#define PLAYER_API VG_STATIC -typedef struct player_instance player_instance; -typedef struct player_pose player_pose; - -struct player_pose{ - enum player_pose_type { - k_player_pose_type_ik, /* regular IK animation */ - k_player_pose_type_fk_2, - } - type; - - v3f root_co; - v4f root_q; - - mdl_keyframe keyframes[32]; - - struct player_board_pose { - f32 lean; - } - board; -}; - -#endif /* PLAYER_API_H */