Server/Slions/Ear/Action.cs
changeset 209 fef4ca058087
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Server/Slions/Ear/Action.cs	Fri Jul 22 18:19:49 2016 +0200
     1.3 @@ -0,0 +1,16 @@
     1.4 +//
     1.5 +
     1.6 +
     1.7 +using System.Runtime.Serialization;
     1.8 +using System.Threading;
     1.9 +
    1.10 +namespace Slions.Ear
    1.11 +{
    1.12 +    [DataContract]
    1.13 +    abstract class Action
    1.14 +    {
    1.15 +        public abstract void Execute();
    1.16 +    }
    1.17 +
    1.18 +
    1.19 +}
    1.20 \ No newline at end of file