summaryrefslogtreecommitdiff
path: root/src/entities/wordBigBlue.js
blob: b9ebb5e03e018428601cc9a3b38ca06ff7be8962 (plain)
1
2
3
4
5
6
7
game.createWordBigBlue = () => {
  const wordBigBlue = game.Entity();
  wordBigBlue.addComponent(game.components.LoadPriority({priority: 3}));
  wordBigBlue.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
  wordBigBlue.sprite = game.sprites.wordBigBlue;
  return wordBigBlue;
}