mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-15 20:48:19 +00:00
12 lines
112 B
C
12 lines
112 B
C
|
#ifndef BASE_TYPES_H
|
||
|
#define BASE_TYPES_H
|
||
|
|
||
|
enum class TRISTATE
|
||
|
{
|
||
|
NONE,
|
||
|
SOME,
|
||
|
ALL,
|
||
|
};
|
||
|
|
||
|
#endif // BASE_TYPES_H
|