22 lines
450 B
C#
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();
|
|||
|
}
|
|||
|
}
|