KF-MMO-Server/Classes/physicsObject.ts

8 lines
196 B
TypeScript
Raw Normal View History

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