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