summaryrefslogtreecommitdiff
path: root/Enemy.ts
blob: 5193991b4506c789e89cc68432f5bd135cdf9366 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
    }
}