From e2e558b8be3cc9dcb080d9069d4958735ed1681e Mon Sep 17 00:00:00 2001 From: Justin Aquadro Date: Mon, 12 Dec 2011 00:22:44 -0500 Subject: [PATCH] Fixes to data enums --- SubstrateCS/Source/Data.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/SubstrateCS/Source/Data.cs b/SubstrateCS/Source/Data.cs index 4a6d4f1..019df4d 100644 --- a/SubstrateCS/Source/Data.cs +++ b/SubstrateCS/Source/Data.cs @@ -267,7 +267,7 @@ namespace Substrate HEAD = 0x08, } - public enum RepeaterOriengation + public enum RepeaterOrientation { EAST = 0, SOUTH = 1, @@ -298,8 +298,15 @@ namespace Substrate NORTH = 3, } + [Flags] + public enum TrapdoorState + { + SWUNG = 0x04, + } + public enum PistonOrientation { + DOWN = 0, UP = 1, EAST = 2, WEST = 3,