Code directory changes
This commit is contained in:
23
src/include/Enum.h
Normal file
23
src/include/Enum.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
namespace Enum
|
||||
{
|
||||
namespace SurfaceType
|
||||
{
|
||||
enum Value {
|
||||
Smooth, Snaps, Inlets, Glue, Weld, Spawn, Hinge, Motor, Bumps
|
||||
};
|
||||
}
|
||||
namespace Shape
|
||||
{
|
||||
enum Value {
|
||||
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
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user