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

12 行
166 B

  1. #ifndef IZ_SPATIAL_H
  2. #define IZ_SPATIAL_H
  3. #include "IZ_placeable.h"
  4. typedef struct {
  5. IZ_Placeable placeable;
  6. IZ_Vector size;
  7. } IZ_Spatial;
  8. #endif //IZ_SPATIAL_H