diff -r 6cd9ffdd6386 -r fef4ca058087 Server/Slions/Ear/Action.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Server/Slions/Ear/Action.cs Fri Jul 22 18:19:49 2016 +0200 @@ -0,0 +1,16 @@ +// + + +using System.Runtime.Serialization; +using System.Threading; + +namespace Slions.Ear +{ + [DataContract] + abstract class Action + { + public abstract void Execute(); + } + + +} \ No newline at end of file