| Revision: | 1114 | 
| Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 9 months ago) by iritscen | 
| File size: | 582 byte(s) | 
| Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. | 
| # | Content | 
|---|---|
| 1 | namespace Oni.Level | 
| 2 | { | 
| 3 | internal class Corpse | 
| 4 | { | 
| 5 | public bool IsFixed; | 
| 6 | public bool IsUsed; | 
| 7 | public string FileName; | 
| 8 | public string CharacterClass; | 
| 9 | public readonly Matrix[] Transforms = new Matrix[19]; | 
| 10 | public BoundingBox BoundingBox; | 
| 11 | |
| 12 | public int Order | 
| 13 | { | 
| 14 | get | 
| 15 | { | 
| 16 | if (IsFixed) | 
| 17 | return 1; | 
| 18 | else if (IsUsed) | 
| 19 | return 2; | 
| 20 | else | 
| 21 | return 3; | 
| 22 | } | 
| 23 | } | 
| 24 | } | 
| 25 | } |