Move renderer into "runtime" subdirectory

This commit is contained in:
Matthias Schiffer 2019-12-24 13:53:16 +01:00
parent 33926af829
commit 3c51a1994f
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
23 changed files with 3 additions and 3 deletions

View file

@ -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');