LeviLamina
Loading...
Searching...
No Matches
ClientInputUpdateSystem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
11public:
12 // ClientInputUpdateSystem inner types define
13 enum class LookDirection : schar {
14 // bitfield representation
15 Down = 0,
16 Up = 1 << 0,
17 Left = 1 << 2,
18 Count = 1 << 2,
19 Right = Up | Count,
20 };
21
22public:
23 // static functions
24 // NOLINTBEGIN
25 MCAPI static ::TickingSystemWithInfo create();
26 // NOLINTEND
27};
Definition ClientInputUpdateSystem.h:10
Definition TickingSystemWithInfo.h:11