add: bozo

This commit is contained in:
Namonay 2024-05-15 16:52:12 +02:00
parent c08f89186e
commit 9cf92622fd
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
import AbstractAuthenticatedView from "./abstracts/AbstractAuthenticatedView.js";
import AbstractView from "./abstracts/AbstractView.js";
import "../3D/maths/gl-matrix-min.js"
import { initShaderProgram } from "../3D/shaders.js"
import { initBuffers } from "../3D/buffers.js"
import { renderCube } from "../3D/cube.js"
export class PongOfflineView extends AbstractAuthenticatedView {
export class PongOfflineView extends AbstractView {
constructor(params) {
super(params, 'Game');
this.init();

View File

@ -1,7 +1,7 @@
import { lang } from "../index.js";
import AbstractAuthenticatedView from "./abstracts/AbstractAuthenticatedView.js";
import AbstractView from "./abstracts/AbstractView.js";
export class TicTacToeOfflineView extends AbstractAuthenticatedView
export class TicTacToeOfflineView extends AbstractView
{
constructor(params)
{