KF-MMO-Server/Classes/physicsObject.ts

8 lines
216 B
TypeScript
Raw Normal View History

2023-09-15 04:49:31 +08:00
export class physicsObject{
name : string
//array of floats [3]
2023-09-16 14:57:54 +08:00
position : number[] = [0,0,0]
rotation : number[] = [0,0,0]
velocity : number[] = [0,0,0]
angularVelocity : number[] = [0,0,0]
2023-09-15 04:49:31 +08:00
}