first commit

This commit is contained in:
Jeena Paradies 2012-11-22 14:22:41 +01:00
commit c8d40ecc9b
22 changed files with 817 additions and 0 deletions

7
Drawable.java Normal file
View file

@ -0,0 +1,7 @@
import java.awt.Graphics;
interface Drawable
{
void step();
void draw(Graphics g);
}