Added controllers and flags

This commit is contained in:
andreja6
2020-03-08 23:22:42 -07:00
parent 9c76bf6956
commit 44d8947975
6 changed files with 128 additions and 0 deletions

6
Enum.h
View File

@@ -14,4 +14,10 @@ namespace Enum
Ball = 0, Block = 1, Cylinder = 2
};
}
namespace Controller
{
enum Value {
Player = 7, KeyboardRight = 1, KeyboardLeft = 2, Joypad1 = 3, Joypad2 = 4, Chase = 5, Flee = 6, None = 0
};
}
}