com.physmo.minvio.utils.ecs.Component Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minvio Show documentation
Show all versions of minvio Show documentation
Simple graphics framework
The newest version!
package com.physmo.minvio.utils.ecs;
import com.physmo.minvio.DrawingContext;
public abstract class Component {
public abstract void tick(DrawingContext dc, Entity e, double t);
}