A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Option.hh
1#pragma once
2
3#include <Common.hh>
4
5#include <optional>
6
7namespace Host {
8
9enum class EOption {
10 Invalid = -1,
11 Mode,
12 Suite,
13 Ghost,
14};
15
16namespace Option {
17
18std::optional<EOption> CheckFlag(const char *arg);
19
20} // namespace Option
21} // namespace Host
This header houses common data types such as our integral types and enums.
Represents the host application.
Definition Option.cc:5