Started PickupSpawnSystem, added 2 events and a system

This commit is contained in:
verysecrethero
2016-02-04 17:43:45 +01:00
parent b56824786c
commit 6a23a987b3
7 changed files with 69 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef PickupSpawnSystem_h__
#define PickupSpawnSystem_h__
#include "Core/System.h"
#include "Input/EInputCommand.h"
#include "Systems/SpawnerSystem.h"
#include "Events/ESpawnerSpawn.h"
#include "Core/EPlayerSpawned.h"
#include "Rendering/ESetCamera.h"
#include "Core/ConfigFile.h"
#include "Core/EPickupSpawned.h"
class PickupSpawnSystem : public ImpureSystem
{
};
#endif