Re-implementation of Izanami game engine
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
150 B

  1. #ifndef IZ_MOVABLE_H
  2. #define IZ_MOVABLE_H
  3. #include "../math/IZ_vector.h"
  4. typedef struct {
  5. IZ_Vector velocity;
  6. } IZ_Movable;
  7. #endif //IZ_MOVABLE_H