Utils/OwnController.cs

23 lines
491 B
C#
Raw Normal View History

2015-11-16 00:38:57 +01:00
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();
2016-12-03 11:37:48 +01:00
abstract public void Dispose();
2015-11-16 00:38:57 +01:00
}
}