b698a0d36f
Adding models now crashes. Threading Added a create player event that currently is not used.
20 lines
256 B
C++
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
|