Move renderer into "runtime" subdirectory
This commit is contained in:
parent
33926af829
commit
3c51a1994f
23 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
import './index.css';
|
import './runtime/index.css';
|
||||||
|
|
||||||
import { GameContext } from './controller/gamecontext';
|
import { GameContext } from './runtime/controller/gamecontext';
|
||||||
|
|
||||||
import { Renderer } from './view/renderer/renderer';
|
import { Renderer } from './runtime/view/renderer/renderer';
|
||||||
|
|
||||||
window.onload = async () => {
|
window.onload = async () => {
|
||||||
const app = document.getElementById('app');
|
const app = document.getElementById('app');
|
||||||
|
|
Reference in a new issue