23 lines
447 B
C#
23 lines
447 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();
|
|
abstract public void Dispose();
|
|
}
|
|
}
|