18 lines
364 B
Plaintext
18 lines
364 B
Plaintext
#ifndef _EOPTIONS_HPP_
|
|
#define _EOPTIONS_HPP_
|
|
|
|
/*** TrooperEngine DLL Header Files ***/
|
|
#include "TrooperEngine.hpp"
|
|
|
|
namespace MainMenu {
|
|
enum eOptions
|
|
{
|
|
Start,
|
|
Head,
|
|
Quit
|
|
};/// END ENUM DEFINITION eOptions
|
|
|
|
void operator++(eOptions& option);
|
|
void operator--(eOptions& option);
|
|
}/// END NAMESPACE DEFINITION MainMenu
|
|
#endif/// END IFNDEF _EOPTIONS_HPP_ |