Smoother movement over network. Some refactoring on client side. Now uses EKeyUp to determine if a key is pressed.

This commit is contained in:
stiffly
2015-12-09 13:02:39 +01:00
parent 2a35c3055e
commit 247ff09743
3 changed files with 71 additions and 23 deletions
@@ -0,0 +1,12 @@
#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];
};
#endif