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,35 @@
#include "eOptions.hpp"
using MainMenu::eOptions;
void MainMenu::operator++(eOptions& option)
{
switch (option)
{
case Start:
option = Head;
break;
case Head:
option = Quit;
break;
case Quit:
option = Start;
break;
}
}
void MainMenu::operator--(eOptions& option)
{
switch (option)
{
case Start:
option = Quit;
break;
case Head:
option = Start;
break;
case Quit:
option = Head;
break;
}
}