LeviLamina
Loading...
Searching...
No Matches
SubCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace AgentCommands {
6
7enum class SubCommand : int {
8 None = 0,
9 Destroy = 1,
10 Inspect = 2,
11 Interact = 3,
12};
13
14}