14 lines
152 B
C

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