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