LeviLamina
Loading...
Searching...
No Matches
SplitScreenUpdatedEventData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // SplitScreenUpdatedEventData inner types define
8 enum class SplitScreenMode : int {
9 Vertical = 1,
10 Horizontal = 2,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<1, 1, bool> mIsSplitScreenActive;
17 ::ll::TypedStorage<4, 4, int> mClientInstanceCount;
18 ::ll::TypedStorage<4, 4, int> mClientSubId;
19 ::ll::TypedStorage<4, 4, uint> mUserId;
20 ::ll::TypedStorage<4, 4, ::SplitScreenUpdatedEventData::SplitScreenMode> mSplitscreenDirection;
21 // NOLINTEND
22};
Definition SplitScreenUpdatedEventData.h:5