Re-implementation of Izanami game engine
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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