Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epoxy
GitHub Repository: epoxy/proj11
Path: blob/master/SLICK_HOME/src/org/newdawn/slick/Renderable.java
1456 views
1
package org.newdawn.slick;
2
3
/**
4
* Description of anything that can be drawn
5
*
6
* @author kevin
7
*/
8
public interface Renderable {
9
10
/**
11
* Draw this artefact at the given location
12
*
13
* @param x The x coordinate to draw the artefact at
14
* @param y The y coordinate to draw the artefact at
15
*/
16
public void draw(float x, float y);
17
18
}
19
20