Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoung4242 committed Jun 16, 2024
1 parent dc9f390 commit 3bdf81b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
5 changes: 3 additions & 2 deletions src/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ export const bluey = new Rectangle({ width: 16, height: 16, color: Color.fromRGB
export const whitey = new Rectangle({ width: 16, height: 16, color: Color.fromRGB(255, 255, 255, 1) });

export const model = {
//eslint-disable-next-line @typescript-eslint/no-empty-function
resetSim: (_e: any, m: any) => {

Check failure on line 9 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check failure on line 9 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check failure on line 9 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint / lint

Unexpected any. Specify a different type

Check failure on line 9 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint / lint

Unexpected any. Specify a different type
// eslint-disable-line @typescript-eslint/no-explicit-any
m.tiles = Array(1296).fill(0);
getNewNoiseField();
drawTilemap();
},
//eslint-disable-next-line @typescript-eslint/no-empty-function

runSim: (_e: any, m: any) => {

Check failure on line 16 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check failure on line 16 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check failure on line 16 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint / lint

Unexpected any. Specify a different type

Check failure on line 16 in src/ui.ts

View workflow job for this annotation

GitHub Actions / lint / lint

Unexpected any. Specify a different type
// eslint-disable-line @typescript-eslint/no-explicit-any
m.tiles = applyCellularAutomataRules(m.tiles, 36, 36);
redrawTilemap(m.tiles, tmap, game);
},
Expand Down
14 changes: 0 additions & 14 deletions test/firstTest.test.ts

This file was deleted.

0 comments on commit 3bdf81b

Please sign in to comment.