Re-implementation of Izanami game engine
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

11 linhas
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