LeviLamina
Loading...
Searching...
No Matches
CollectionSpecification.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace AgentComponents {
6
7enum class CollectionSpecification : uchar {
8 SpecificItem = 0,
9 AllItems = 1,
10 None = 2,
11};
12
13}