Files
fishtanks/src/Components/Input.h
T
ViktorLjung 609687d6b4 MULTIPLAYER
2014-05-20 01:43:59 +02:00

25 lines
358 B
C++
Executable File

#ifndef Components_Input_h__
#define Components_Input_h__
#include "Component.h"
namespace Components
{
struct Input : Component
{
/*Input()
: Keyboard(false)
, Mouse(false)
, GamepadID(0) { }
bool Keyboard;
bool Mouse;
int GamepadID;*/
virtual Input* Clone() const override { return new Input(*this); }
};
}
#endif // !Components_Input_h__