1 #pragma once
2 // Description:
3 //   Context enum.
4 //
5 // Copyright (C) 2001 Frank Becker
6 //
7 // This program is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU General Public License as published by the Free Software
9 // Foundation;  either version 2 of the License,  or (at your option) any  later
10 // version.
11 //
12 // This program is distributed in the hope that it will be useful,  but  WITHOUT
13 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
15 //
16 
17 #ifdef HAS_NAMESPACE
18 namespace
19 #else
20 struct
21 #endif
22 Context
23 {
24     enum ContextEnum
25     {
26         eUnknown,
27         eMenu,
28         eInGame,
29         ePaused,
30         eCameraFlyby,
31         eLAST
32     };
33 };
34