13 lines
117 B
C#
13 lines
117 B
C#
|
using System;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[Flags]
|
||
|
public enum HullMask
|
||
|
{
|
||
|
None = 0,
|
||
|
Human = 1,
|
||
|
Golem = 2,
|
||
|
BeetleQueen = 4
|
||
|
}
|