Files
fishtanks/src/Systems/DebugSystem.h
T
Jace 4c081d0e1c Indentation style changed to Allman
Using Artistic Style (http://astyle.sourceforge.net/)
Options:
--style=allman
--indent=tab
--keep-one-line-blocks
--align-pointer=type
--align-reference=name
2014-04-11 20:59:42 +02:00

21 lines
360 B
C++

#ifndef DebugSystem_h__
#define DebugSystem_h__
#include "System.h"
#include "Components/Transform.h"
namespace Systems
{
class DebugSystem : public System
{
public:
DebugSystem(World* world)
: System(world) { }
void Update(double dt) override;
//void UpdateEntity(double dt, EntityID entity, EntityID parent) override;
};
}
#endif // DebugSystem_h__