Add constants for the 8 main facing values to Lua. Fixes #4490

This commit is contained in:
Oliver Brakmann
2014-02-07 22:36:22 +01:00
parent 2931f9dfcb
commit ba1558259b
5 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
Facing = { }
Facing.North = { 0, "Int32" }
Facing.NorthWest = { 32, "Int32" }
Facing.West = { 64, "Int32" }
Facing.SouthWest = { 96, "Int32" }
Facing.South = { 128, "Int32" }
Facing.SouthEast = { 160, "Int32" }
Facing.East = { 192, "Int32" }
Facing.NorthEast = { 224, "Int32" }