全部移动至es模块

This commit is contained in:
yhh
2020-07-23 11:00:46 +08:00
parent 814234ca61
commit 1b52bc5fd1
71 changed files with 19273 additions and 16907 deletions

View File

@@ -1,11 +1,13 @@
class Vector3 {
public x: number;
public y: number;
public z: number;
module es {
export class Vector3 {
public x: number;
public y: number;
public z: number;
constructor(x: number, y: number, z: number){
this.x = x;
this.y = y;
this.z = z;
constructor(x: number, y: number, z: number){
this.x = x;
this.y = y;
this.z = z;
}
}
}
}