renderer initializer

pull/1/head
cosmonaut 2022-03-08 15:22:58 -08:00
parent 227aae9a1a
commit 1d34defbfb
1 changed files with 5 additions and 0 deletions

View File

@ -2,5 +2,10 @@
public abstract class Renderer : EntityComponentReader
{
public Renderer(World world)
{
world.AddRenderer(this);
}
public abstract void Draw(TimeSpan delta);
}