Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/RSDK/Input/Steam/SteamInputDevice.hpp
1174 views
1
2
namespace SKU
3
{
4
5
struct InputDeviceSteam : InputDevice {
6
void UpdateInput();
7
void ProcessInput(int32 controllerID);
8
9
int32 keyMasks[9];
10
11
uint16 buttonMasks;
12
uint16 prevButtonMasks;
13
uint8 controllerID;
14
uint8 stateUp;
15
uint8 stateDown;
16
uint8 stateLeft;
17
uint8 stateRight;
18
uint8 stateA;
19
uint8 stateB;
20
uint8 stateC;
21
uint8 stateX;
22
uint8 stateY;
23
uint8 stateZ;
24
uint8 stateStart;
25
uint8 stateSelect;
26
};
27
28
void InitSteamInputAPI();
29
InputDeviceSteam *InitSteamInputDevice(uint32 id);
30
31
} // namespace SKU
32