32 lines
385 B
C++
32 lines
385 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-19.
|
|
//
|
|
|
|
#ifndef DAYDREAM_EKRAKENHIT_H
|
|
#define DAYDREAM_EKRAKENHIT_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
#include "Core/CTransform.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct KrakenHit : Event
|
|
{
|
|
EntityID Kraken;
|
|
EntityID Hitter;
|
|
glm::vec3 PlaceHit;
|
|
int MaxHealth;
|
|
int CurrentHealth;
|
|
int NewHealth;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_EKRAKENHIT_H
|