Minor changes and add favicon

This commit is contained in:
schmelczerandras 2020-10-25 09:12:23 +01:00
parent 34dae300da
commit e7f9007b23
18 changed files with 28 additions and 44 deletions

View file

@ -1,13 +1,6 @@
import { vec2 } from 'gl-matrix';
import { Renderer } from 'sdf-2d';
import {
CharacterBase,
CharacterTeam,
Circle,
Id,
settings,
UpdateMessage,
} from 'shared';
import { CharacterBase, CharacterTeam, Circle, Id, settings } from 'shared';
import { BlobShape } from '../shapes/blob-shape';
import { ViewObject } from './view-object';

View file

@ -1,6 +1,6 @@
import { vec2, vec3 } from 'gl-matrix';
import { CircleLight, Renderer } from 'sdf-2d';
import { CommandExecutors, Id, LampBase, UpdateMessage } from 'shared';
import { CommandExecutors, Id, LampBase } from 'shared';
import { RenderCommand } from '../commands/types/render';
import { ViewObject } from './view-object';

View file

@ -1,6 +1,6 @@
import { vec2 } from 'gl-matrix';
import { CircleLight, ColorfulCircle, Renderer } from 'sdf-2d';
import { CharacterTeam, Id, ProjectileBase, settings, UpdateMessage } from 'shared';
import { CharacterTeam, Id, ProjectileBase, settings } from 'shared';
import { ViewObject } from './view-object';
export class ProjectileView extends ProjectileBase implements ViewObject {

View file

@ -1,5 +1,5 @@
import { Renderer } from 'sdf-2d';
import { GameObject, UpdateMessage } from 'shared';
import { GameObject } from 'shared';
export interface ViewObject extends GameObject {
step(deltaTimeInMilliseconds: number): void;