package dev.lh.snake; import java.awt.Graphics; public interface Updateable { void tick(); void render(Graphics g); }