File: JJ2Version.h

package info (click to toggle)
jazz2-native 3.5.0-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 16,912 kB
  • sloc: cpp: 172,557; xml: 113; python: 36; makefile: 5; sh: 2
file content (24 lines) | stat: -rw-r--r-- 408 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include "../../Main.h"

namespace Jazz2::Compatibility
{
	/** @brief Version of the original game, supports a bitwise combination of its member values */
	enum class JJ2Version : std::uint16_t
	{
		Unknown = 0x0000,

		BaseGame = 0x0001,
		TSF = 0x0002,
		HH = 0x0004,
		CC = 0x0008,

		PlusExtension = 0x0100,
		SharewareDemo = 0x0200,

		All = 0xffff
	};

	DEATH_ENUM_FLAGS(JJ2Version);
}