10 lines
173 B
C#
Executable File
10 lines
173 B
C#
Executable File
namespace Updater
|
|
{
|
|
internal interface IRenderObject
|
|
{
|
|
public void Draw();
|
|
public void Clean();
|
|
public bool Visible { get; set; }
|
|
}
|
|
}
|