summaryrefslogtreecommitdiff
path: root/ts/Enemy.ts
blob: c46194148f066f4867375bcfe2db4fe4c0fdaf4e (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
    }
}