Re-implementation of Izanami game engine
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
158 B

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