budnhead/org.budnhead/core/ActorAction.cs

15 lines
257 B
C#
Raw Normal View History

2017-05-04 23:57:00 +02:00
using System;
2017-05-09 23:41:50 +02:00
namespace org.budnhead.core
2017-05-04 23:57:00 +02:00
{
/**
* @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)
{
}
}
}