Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
Types.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 1/15/23.
3//
4
5#pragma once
6#ifndef ATLAS_TYPES_HPP
7#define ATLAS_TYPES_HPP
8
9#include <cstdint>
10
11using RecordID = std::uint32_t;
12using AtlasID = std::uint64_t;
13using F95ID = std::uint64_t;
14[[maybe_unused]] constexpr AtlasID INVALID_ATLAS_ID { 0 };
15[[maybe_unused]] constexpr RecordID INVALID_RECORD_ID { 0 };
16[[maybe_unused]] constexpr RecordID TESTING_RECORD_ID { 1 };
17[[maybe_unused]] constexpr F95ID INVALID_F95_ID { 0 };
18
19#endif //ATLAS_TYPES_HPP
constexpr RecordID INVALID_RECORD_ID
Definition Types.hpp:15
std::uint32_t RecordID
Definition Types.hpp:11
std::uint64_t F95ID
Definition Types.hpp:13
std::uint64_t AtlasID
Definition Types.hpp:12
constexpr RecordID TESTING_RECORD_ID
Definition Types.hpp:16
constexpr F95ID INVALID_F95_ID
Definition Types.hpp:17
constexpr AtlasID INVALID_ATLAS_ID
Definition Types.hpp:14