GameEngine/include/damage.h
2026-02-20 16:12:16 +01:00

14 lines
144 B
C

#ifndef DAMAGE_H
# define DAMAGE_H
typedef enum {
PHYSICAL_DMG,
MAGICA_DMG,
} DAMAGE_TYPE;
typedef struct {
} Damage;
#endif