Reorganize src folder and add Api and Scene classes

This commit is contained in:
Dennis Schoepf 2021-07-14 17:27:11 +02:00
parent 8b50adcd60
commit a4bb1655d0
6 changed files with 5 additions and 3 deletions

1
src/Api.ts Normal file
View file

@ -0,0 +1 @@
export class Api {}

View file

@ -1,5 +1,5 @@
import { mp5 } from '../main';
import { colors } from './colors';
import { colors } from './constants/colors';
export class Player {
x: number;

1
src/Scene.ts Normal file
View file

@ -0,0 +1 @@
export class Screen {}