before removing smooth shadows

This commit is contained in:
Matei Adriel 2019-07-15 14:45:52 +03:00
parent b28eec6342
commit 9eba227ec3
70 changed files with 4277 additions and 3673 deletions
src/modules/simulation/classes

View file

@ -0,0 +1,10 @@
import { Transform, vector2 } from './Transform'
export class Gate {
public static lastId = 0
public transform = new Transform()
public id = Gate.lastId++
public shadow: vector2 = [0, 0]
public constructor(public color = 'blue') {}
}