diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-02 17:52:19 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-02 17:52:19 -0600 |
commit | 61c835723a685121316b196fb6f49ab10c92c240 (patch) | |
tree | 1dd7bdd5932327bbb09101aa853daa20e26876a9 | |
parent | ac89bd1bed71aa473b50717ce682e9d7f06837bb (diff) | |
download | bbiy-61c835723a685121316b196fb6f49ab10c92c240.tar.gz bbiy-61c835723a685121316b196fb6f49ab10c92c240.zip |
Rm flag.png
-rw-r--r-- | src/entities/flag.png | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/entities/flag.png b/src/entities/flag.png deleted file mode 100644 index b7115d2..0000000 --- a/src/entities/flag.png +++ /dev/null @@ -1,13 +0,0 @@ -game.createFlag = () => { - const flag = game.Entity(); - flag.addComponent(game.components.Position({x: 0, y: 0})); - flag.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100})); - flag.sprite = game.graphics.Sprite({ - image: game.assets.flag, - spriteHeight: 24, - spriteWidth: 24, - numFrames: 3, - timePerFrame: 100, - }); - return flag; -} |