2023-08-25 18:48:17 -04:00
|
|
|
import { Component, ComponentNames } from '.';
|
2023-07-19 23:38:24 -04:00
|
|
|
|
|
|
|
export class Moment extends Component {
|
|
|
|
public inertia: number;
|
|
|
|
|
|
|
|
constructor(inertia: number) {
|
|
|
|
super(ComponentNames.Moment);
|
|
|
|
this.inertia = inertia;
|
|
|
|
}
|
|
|
|
}
|