1 2 3 4 5 6 7 8 9 10 11 12 13 14 | namespace Input
{
struct input
{
key Keys[KeyCount] = {};
int32 MouseX = 0;
int32 MouseY = 0;
bool bIsBlocked;
};
static input InternalInput = {};
};
|
1 | Watching window shows: "identifier 'InternalInput' not found" |