mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-09-27 10:41:09 +00:00
21 lines
474 B
C#
21 lines
474 B
C#
namespace stonevox
|
|
{
|
|
public abstract class Appearence
|
|
{
|
|
public virtual bool Enabled { get; set; }
|
|
public Widget Owner;
|
|
|
|
public Appearence()
|
|
{
|
|
Enabled = true;
|
|
}
|
|
|
|
public abstract void Initialize();
|
|
|
|
public abstract void Render(float x, float y, float width, float height);
|
|
|
|
public abstract Appearence FromData(AppearenceData data);
|
|
public abstract AppearenceData ToData();
|
|
}
|
|
}
|