Skip to content

Instantly share code, notes, and snippets.

@karolramos
Forked from juunegreiros/matrizInimigo.js
Created June 23, 2020 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karolramos/38c305c348b558e6b05ce37c686cd00e to your computer and use it in GitHub Desktop.
Save karolramos/38c305c348b558e6b05ce37c686cd00e to your computer and use it in GitHub Desktop.
Matrizes Imersão GameDev Javascript
const matrizInimigo = [
[0, 0],
[104, 0],
[208, 0],
[312, 0],
[0, 104],
[104, 104],
[208, 104],
[312, 104],
[0, 208],
[104, 208],
[208, 208],
[312, 208],
[0, 312],
[104, 312],
[208, 312],
[312, 312],
[0, 418],
[104, 418],
[208, 418],
[312, 418],
[0, 522],
[104, 522],
[208, 522],
[312, 522],
[0, 626],
[104, 626],
[208, 626],
[312, 626],
]
const matrizPersonagem = [
[0, 0],
[220, 0],
[440, 0],
[660, 0],
[0, 270],
[220, 270],
[440, 270],
[660, 270],
[0, 540],
[220, 540],
[440, 540],
[660, 540],
[0, 810],
[220, 810],
[440, 810],
[660, 810],
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment