diff options
Diffstat (limited to 'Enemy.ts')
| -rw-r--r-- | Enemy.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Enemy.ts b/Enemy.ts new file mode 100644 index 0000000..5193991 --- /dev/null +++ b/Enemy.ts @@ -0,0 +1,12 @@ +/// <reference path="three_js/ts/three.d.ts"/> +/// <reference path="physi_js/physijs.d.ts"/> + +import {Morph} from "./Morph"; + +export class Enemy extends Morph { + + constructor() { + super(null, null, null); + //todo + } +}
\ No newline at end of file |
