Utils/OwnView.cs

25 lines
584 B
C#
Raw Permalink 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;
namespace BlubbFish.Utils {
public abstract class OwnView {
2017-08-08 23:25:33 +02:00
protected OwnView() { }
/// <summary>
/// Called if the Oberver (Model) updates its View
/// </summary>
public abstract void Update();
/// <summary>
/// Called if view is viewed
/// </summary>
2017-08-08 23:25:33 +02:00
//protected abstract void Init();
/// <summary>
/// Called if Form is Disposed
/// </summary>
public abstract void Dispose();
}
2015-11-16 00:38:57 +01:00
}