First commit

This commit is contained in:
2017-10-13 08:11:07 +02:00
commit a51ea64692
28 changed files with 7990 additions and 0 deletions

10
Explosions.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "System.h"
class Explosions : public System {
public:
Explosions();
void Update();
void ProcessMessage(const char* msg);
};