Renderer.java 432 B

123456789101112131415161718192021222324
  1. package me.hammerle.supersnuvi.entity.components.animator;
  2. import me.hammerle.supersnuvi.entity.Entity;
  3. public class Renderer
  4. {
  5. public final static Renderer NULL = new Renderer(null);
  6. protected final Entity ent;
  7. protected Renderer(Entity ent)
  8. {
  9. this.ent = ent;
  10. }
  11. public void renderTick(float lag)
  12. {
  13. }
  14. public boolean isAnimated()
  15. {
  16. return false;
  17. }
  18. }