Add lighting shader

This commit is contained in:
schmelczerandras 2020-07-22 22:47:26 +02:00
parent e88b4589d2
commit 0cd383794c
11 changed files with 144 additions and 295 deletions

View file

@ -0,0 +1,8 @@
import { Command } from '../command';
import { vec2 } from 'gl-matrix';
export class CursorMoveCommand extends Command {
public constructor(public readonly position?: vec2) {
super();
}
}