summaryrefslogtreecommitdiff
path: root/ts/Player.ts
blob: a118b64f49f58b23d8428d4cd6a907f11399adf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// <reference path="../three_js/ts/three.d.ts"/>
/// <reference path="../physi_js/physijs.d.ts"/>

import {Morph} from "./Morph";

export class Player extends Morph {

    constructor() {
        let mat = new THREE.MeshBasicMaterial({
            color: 0x00b0a0,
            shading: THREE.SmoothShading
        });
        super(4, mat, 1);
    }
}