diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2026-07-25 13:14:13 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2026-07-25 13:14:13 -0700 |
| commit | 9cb28a5475ca971e404e10e79e5c7d03da9ad91e (patch) | |
| tree | 69bcafcce20a13781425b7fff10f679e7afa24da /static/games | |
| parent | 8ae0ffadb9d33abf150f3a7ead662415b2e3dd4e (diff) | |
| download | roseh.moe-9cb28a5475ca971e404e10e79e5c7d03da9ad91e.tar.zst | |
Rename stallman-shooter to RMS shooter
Diffstat (limited to 'static/games')
| -rw-r--r-- | static/games/rms/gates.js | 2 | ||||
| -rw-r--r-- | static/games/rms/main.js | 4 | ||||
| -rw-r--r-- | static/games/rms/player.js | 2 | ||||
| -rw-r--r-- | static/games/rms/state.js | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/static/games/rms/gates.js b/static/games/rms/gates.js index c307f1e..4ec1955 100644 --- a/static/games/rms/gates.js +++ b/static/games/rms/gates.js @@ -1,4 +1,4 @@ -import * as constants from '/static/games/stallman-shooter/constants.js'; +import * as constants from '/static/games/rms/constants.js'; export class Gates { constructor() { diff --git a/static/games/rms/main.js b/static/games/rms/main.js index d3a3581..70c797d 100644 --- a/static/games/rms/main.js +++ b/static/games/rms/main.js @@ -1,5 +1,5 @@ -import * as state from '/static/games/stallman-shooter/state.js'; -import * as constants from '/static/games/stallman-shooter/constants.js'; +import * as state from '/static/games/rms/state.js'; +import * as constants from '/static/games/rms/constants.js'; let events = []; diff --git a/static/games/rms/player.js b/static/games/rms/player.js index 83144e0..c0ff84f 100644 --- a/static/games/rms/player.js +++ b/static/games/rms/player.js @@ -1,4 +1,4 @@ -import * as constants from '/static/games/stallman-shooter/constants.js'; +import * as constants from '/static/games/rms/constants.js'; export class Player { constructor() { diff --git a/static/games/rms/state.js b/static/games/rms/state.js index f184c3e..0ec0586 100644 --- a/static/games/rms/state.js +++ b/static/games/rms/state.js @@ -1,6 +1,6 @@ -import * as player from '/static/games/stallman-shooter/player.js'; -import * as gates from '/static/games/stallman-shooter/gates.js'; -import * as constants from '/static/games/stallman-shooter/constants.js'; +import * as player from '/static/games/rms/player.js'; +import * as gates from '/static/games/rms/gates.js'; +import * as constants from '/static/games/rms/constants.js'; export function straight_bullet_act(straight_bullet) { const x = straight_bullet.x; |
