Last active
October 23, 2022 08:10
-
-
Save vestige/e9435e5442e919b2fc4540b3d24609ce to your computer and use it in GitHub Desktop.
This file contains 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
import pyxel | |
class App: | |
def __init__(self): | |
pyxel.init(160, 120, title="hello") | |
pyxel.run(self.update, self.draw) | |
def update(self): | |
pass | |
def draw(self): | |
pyxel.cls(0) | |
if __name__ == "__main__": | |
App() |
Author
vestige
commented
Oct 23, 2022
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment