bunch of shit

This commit is contained in:
2021-03-14 18:39:55 +01:00
parent bc1a251842
commit 923ac33302
6 changed files with 30 additions and 1 deletions

View File

@@ -9,4 +9,7 @@ class BaseRenderable extends BaseEntity{
super();
sprite = new Sprite();
}
override public function think(){
super.think();
}
}

View File

@@ -10,6 +10,6 @@ class Player extends BaseRenderable{
sprite.addChild(new Bitmap(Tileset.tilesetMap["testsheet"].tileMap["testTile5"]));
}
override public function think(){
super.think();
}
}