Server/Slions/Ear/Action.cs
author StephaneLenclud
Fri, 22 Jul 2016 18:19:49 +0200
changeset 209 fef4ca058087
permissions -rw-r--r--
Prototype for event and action framework.
     1 //
     2 
     3 
     4 using System.Runtime.Serialization;
     5 using System.Threading;
     6 
     7 namespace Slions.Ear
     8 {
     9     [DataContract]
    10     abstract class Action
    11     {
    12         public abstract void Execute();
    13     }
    14 
    15 
    16 }