Merge branch 'Movement' of github.com:teamfisk/TacticalZ into Movement

This commit is contained in:
viktorljung
2016-03-13 13:41:39 +01:00
24 changed files with 1788 additions and 178 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef FadeSystem_h__
#define FadeSystem_h__
#include "Core/System.h"
#include "GLM.h"
class FadeSystem : public PureSystem
{
public:
FadeSystem(SystemParams params)
: System(params)
, PureSystem("Fade")
{
}
virtual void UpdateComponent(EntityWrapper& entity, ComponentWrapper& cFadeOut, double dt) override;
private:
};
#endif