blob: cd762941c33d28bc3e5fb7b177d4cfe117684947 (
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;
}
}
|