Add files via upload

This commit is contained in:
Olezen
2019-07-15 20:10:07 +02:00
committed by GitHub
parent 821c4fb2f2
commit 8395b0921e
33 changed files with 2298 additions and 0 deletions

View File

@@ -0,0 +1,16 @@

namespace Fragsurf.Movement {
[System.Flags]
public enum InputButtons {
None = 0,
Jump = 1 << 1,
Duck = 1 << 2,
Speed = 1 << 3,
MoveLeft = 1 << 4,
MoveRight = 1 << 5,
MoveForward = 1 << 6,
MoveBack = 1 << 7
}
}