8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
export class physicsObject{
|
||
|
name : string
|
||
|
//array of floats [3]
|
||
|
position : number[] = []
|
||
|
rotation : number[] = []
|
||
|
velocity : number[] = []
|
||
|
angularVelocity : number[] = []
|
||
|
}
|