budnhead/org.budnhead/core/ActorAction.cs

15 lines
257 B
C#

using System;
namespace org.budnhead.core
{
/**
* @class ActorAction
* @brief Base Class to manage orders, jobs, other things to do and/or changes over time for Actors
*/
public class ActorAction
{
public ActorAction(Actor actor)
{
}
}
}