Add project files.

This commit is contained in:
2018-06-25 21:48:45 -04:00
parent b04a25689b
commit 3c1b7d28e8
425 changed files with 35333 additions and 0 deletions
@@ -0,0 +1,39 @@
#include "cKey.hpp"
/*** Custom Header Files ***/
#include "cKeyboard.hpp"
using InputEngine::cKey;
cKey::cKey( const SDL_Keycode& key )
: m_key(key)
{}
cKey::cKey( const cKey& copy )
: m_key(copy.getKey())
{}
/*virtual*/ cKey::~cKey()
{}
///Funtions
/*virtual*/ void cKey::KeyPress()
{}
/*virtual*/ void cKey::KeyUP()
{}
/*virtual*/ void cKey::KeyDown()
{}
///Sets
void cKey::setKey( const SDL_Keycode& key )
{
m_key = key;
}
///Gets
const SDL_Keycode& cKey::getKey() const
{
return m_key;
}