rimworld-animations/1.5/Source/GroupAnimations/GroupAnimationContexts/BaseGroupAnimationContext.cs

19 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace Rimworld_Animations
{
public abstract class BaseGroupAnimationContext
{
public int actorShift = 0;
public abstract bool CanAnimationBeUsed(List<Pawn> actors, out int reorder);
//cool class for designating contexts for animations
// configure CanAnimationBeUsed to test whether it can be used
}
}