diff options
Diffstat (limited to 'src/Light.ts')
| -rw-r--r-- | src/Light.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Light.ts b/src/Light.ts deleted file mode 100644 index 58e4185..0000000 --- a/src/Light.ts +++ /dev/null @@ -1,10 +0,0 @@ -import {Type} from 'class-transformer'; -import {Vector} from './Vector'; - -export class Light { - @Type(() => Vector) - readonly position: Vector; - constructor(position: Vector, readonly intensity: number) { - this.position = position; - } -} |