12 lines
204 B
C#
12 lines
204 B
C#
namespace EveOPreview
|
|
{
|
|
/// <summary>
|
|
/// Properties and methods that are common for all views
|
|
/// </summary>
|
|
public interface IView
|
|
{
|
|
void Show();
|
|
void Hide();
|
|
void Close();
|
|
}
|
|
} |