Files
axyz/include/Engine/Network/SnapshotDefinitions.h
T
2015-12-10 14:14:36 +01:00

20 lines
377 B
C

#ifndef SnapshotDefinitions_h__
#define SnapshotDefinitions_h__
struct SnapshotDefinitions
{
// "+Forward" is 8 characters * sizeof(char) = 8
char* InputForward = new char[8];
// "+Right" is 6 characters * sizeof(char) = 6
char* InputRight = new char[6];
};
struct IsWASDKeyDown
{
bool W = false;
bool A = false;
bool S = false;
bool D = false;
};
#endif