initial commit

This commit is contained in:
2026-04-15 19:50:15 -05:00
commit b00f8d7d87
59 changed files with 1100 additions and 0 deletions

13
Sprite.java Normal file
View File

@@ -0,0 +1,13 @@
import java.awt.Graphics;
import javax.swing.ImageIcon;
import java.awt.Image;
public class Sprite{
ImageIcon icon;
Image sprite;
public Sprite(ImageIcon i){
icon = i;
sprite = i.getImage();
}
}