mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
12 lines
208 B
C#
12 lines
208 B
C#
namespace FSO.SimAntics.Engine.Scopes
|
|
{
|
|
public enum VMAnimationScope : int
|
|
{
|
|
Object = 0,
|
|
Global = 1,
|
|
PersonStock = 2,
|
|
Misc = 3,
|
|
|
|
StackObject = 65536
|
|
}
|
|
}
|