blob: 3d0dd2f3fd9d45ca780282f5682eec44c8f8c07e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Component, ComponentNames } from ".";
export class Moment extends Component {
public inertia: number;
constructor(inertia: number) {
super(ComponentNames.Moment);
this.inertia = inertia;
}
}
|