OpenRA.Order.UIntFromActor C# (CSharp) Method

UIntFromActor() static private method

static private UIntFromActor ( OpenRA.Actor a ) : uint
a OpenRA.Actor
return uint
        static uint UIntFromActor(Actor a)
        {
            if (a == null) return uint.MaxValue;
            return a.ActorID;
        }