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,34 @@
#include "cMenuSelect.hpp"
/*** SDL Header Files ***/
#include "SDL.h"
/*** Custom Header Files ***/
#include "../cMainMenu.hpp"
using Input::cMenuSelect;
cMenuSelect::cMenuSelect( SDL_Keycode key, MainMenu::cMainMenu** menu )
: cKey(key), mpp_menu(menu)
{}
/*cMenuSelect::cMenuSelect( const cMenuSelect& copy )
{}*/
cMenuSelect::~cMenuSelect()
{}
///Funtions
void cMenuSelect::KeyPress()
{
}
void cMenuSelect::KeyUP()
{
}
void cMenuSelect::KeyDown()
{
if (mpp_menu != nullptr && *mpp_menu != nullptr)
(*mpp_menu)->OptionSelect();
}
@@ -0,0 +1,7 @@
#ifndef _COMPILESETTINGS_H_
#define _COMPILESETTINGS_H_
#define _STATIC_LIB_ 1
#define _DEBUG_ 0
#endif/// END IFNDEF _COMPILESETTINGS_H_