summaryrefslogtreecommitdiff
path: root/lib/utility/EmptyCommand.cs
blob: ca47568d821a9194cfbf3f575c2ce7c9ba1387fc (plain)
1
2
3
4
5
6
7
8
9
namespace gorilla.utility
{
    public class EmptyCommand : Command
    {
        public void run()
        {
        }
    }
}