jumpstorm/engine/components/NetworkUpdateable.ts

8 lines
168 B
TypeScript
Raw Normal View History

2023-08-25 18:48:17 -04:00
import { Component, ComponentNames } from '.';
2023-08-13 18:47:58 -04:00
export class NetworkUpdateable extends Component {
2023-08-26 19:55:27 -04:00
constructor() {
2023-08-13 18:47:58 -04:00
super(ComponentNames.NetworkUpdateable);
}
}