feat: added DamageEventData struct

This commit is contained in:
Sara 2023-12-01 21:43:28 +01:00
parent 264141ceb5
commit c2229a5bba

11
game/src/DamageEvent.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef FIGHT_DAMAGE_EVENT_H
#define FIGHT_DAMAGE_EVENT_H
#include "vmath.h"
typedef struct DamageEventData {
int damageAmount;
Vector origin;
} DamageEventData;
#endif // !FIGHT_DAMAGE_EVENT_H