budnhead/org.niclasundharald.engine/ActorAction.cs
Harald Christian Joachim Wolff 0fe2fb1aeb WIP
2017-05-04 23:57:00 +02:00

15 lines
266 B
C#

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)
{
}
}
}