Rm flag.png

This commit is contained in:
Logan Hunt 2022-04-02 17:52:19 -06:00
parent ac89bd1bed
commit 61c835723a
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 52B3774857EB24B1

View File

@ -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;
}