Files
axyz/include/Game/ECreatePlayer.h
T
stiffly b698a0d36f WIP
Adding models now crashes. Threading
Added a create player event that currently is not used.
2015-12-15 11:21:46 +01:00

20 lines
256 B
C++

#ifndef Events_CreatePlayer_h__
#define Events_CreatePlayer_h__
#include "Core/EventBroker.h"
#include "Core/World.h"
namespace Events
{
struct CreatePlayer : Event
{
unsigned int entityID;
std::string modelPath;
World* world;
};
}
#endif