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
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

@@ -0,0 +1,37 @@
#ifndef _CKEY_HPP_
#define _CKEY_HPP_
/*** SDL Header Files ***/
#include <SDL.h>
/*** DLL Header File ***/
#include "dllExport.h"
namespace InputEngine {
class EXPORT_FROM_MYDLL cKey
{
public:
cKey( const SDL_Keycode& key );
cKey( const cKey& copy );
virtual ~cKey();
///Funtions
/* Call to check if the key is pressed */
virtual void KeyPress();
/* Call to check if the key is released */
virtual void KeyUP();
/* Call to check if the key is pressed */
virtual void KeyDown();
///Sets
void setKey( const SDL_Keycode& key );
///Gets
const SDL_Keycode& getKey() const;
private:
private:
SDL_Keycode m_key;
};/// END CLASS DEFINITION cKey
}/// END NAMESPACE DEFINITION InputEngine
#endif/// END IFNDEF _CKEY_HPP_