This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #128 8*8 tiles | |
| from colors import * | |
| from kandinsky import set_pixel | |
| class Sprite: | |
| def __init__(self,texture,width=8): | |
| self.pixels=texture | |
| self.width=width |