Pre-resize fillparent

This commit is contained in:
2018-08-13 22:22:10 -04:00
parent 58fa6f0503
commit 353dc21750
95 changed files with 478 additions and 437 deletions
@@ -32,9 +32,9 @@ namespace InputEngine {
cKeyboard( const cKeyboard& copy );
virtual ~cKeyboard();
///Funtions
/// Functions
//Used when looking for keys that have been add to the check list
/// Used when looking for keys that have been add to the check list
virtual void KeyboardCheck( const SDL_Event& event );
void AddKey( InputEngine::cKey* key );
@@ -42,12 +42,12 @@ namespace InputEngine {
void DeleteAllKeys();
///Sets
///Gets
/// Sets
/// Gets
const cString& getLabel() const;
private:
cString m_label;// = ""
cString m_label;/// = ""
std::vector<InputEngine::cKey*> m_keys;
};/// END CLASS DEFINITION cKeyboard