using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlubbFish.Utils
{
public abstract class OwnView
{
///
/// Called if the Oberver (Model) updates its View
///
abstract public void update();
///
/// Called if view is viewed
///
abstract protected void init();
///
/// Called if Form is Disposed
///
abstract public void Dispose();
}
}