using System; namespace org.niclasundharald.engine { /** * @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) { } } }