-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStartScreen.h
50 lines (39 loc) · 1.13 KB
/
StartScreen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// --------------------------------------------------------------------------------------------------------------------------------
// DEMISERL
// Copyright 2014 Corremn
//
// $LastChangedBy$
// $LastChangedDate$
// $LastChangedRevision$
// $HeadURL: $
// --------------------------------------------------------------------------------------------------------------------------------
#if !defined(AFX_STARTSCREEN_H__1D5424E9_99A9_4C84_A282_EEEEB647DB79__INCLUDED_)
#define AFX_STARTSCREEN_H__1D5424E9_99A9_4C84_A282_EEEEB647DB79__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
enum eStartState
{
sIntro,
sName,
sClass,
sComplete
};
class StartScreen
{
public:
StartScreen();
virtual void Display();
virtual int PassInput(bool *keys);
virtual void GetPlayerInfo();
virtual int GetName(bool *keys);
virtual int GetClass(bool *keys);
eStartState state;
std::string pName;
std::string pClass;
int length;
};
#endif // !defined(AFX_STARTSCREEN_H__1D5424E9_99A9_4C84_A282_EEEEB647DB79__INCLUDED_)