rc3_2021_map/scripts/downstairs.js
2021-12-23 20:12:00 +01:00

21 lines
557 B
JavaScript

import("https://static.rc3.world/scripts/default/bundle.js");
import { TicTacToe } from "./tictactoe_module.js";
new TicTacToe({
gamestate_variable : 'tictactoe',
layer_moves : 'tictactoe/moves',
layer_overlay : 'tictactoe/overlay',
layer_game : 'tictactoe/game',
layer_blue : 'tictactoe/blue',
layer_green : 'tictactoe/green',
layer_board : 'tictactoe/board',
layer_exit : 'tictactoe/leave',
popup : 'tictactoe',
board_x : 51,
board_y : 6,
blue_x : 54,
blue_y : 8,
green_x : 50,
green_y : 8
});