source: OniSplit/Objects/DoorFlags.cs@ 1117

Last change on this file since 1117 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 383 bytes
Line 
1using System;
2
3namespace Oni.Objects
4{
5 [Flags]
6 internal enum DoorFlags : ushort
7 {
8 None = 0x00,
9 InitialLocked = 0x01,
10 InDoorFrame = 0x04,
11 Manual = 0x10,
12 DoubleDoor = 0x80,
13 Mirror = 0x0100,
14 OneWay = 0x0200,
15 Reverse = 0x0400,
16 Jammed = 0x800,
17 InitialOpen = 0x1000,
18 }
19}
Note: See TracBrowser for help on using the repository browser.