Utils/OwnController.cs
2015-11-15 23:38:57 +00:00

22 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace BlubbFish.Utils
{
public abstract class OwnController
{
/// <summary>
/// Führt den Controller aus.
/// </summary>
public void execute()
{
this.init();
}
abstract protected void init();
}
}