jumpstorm/engine/components/NetworkUpdateable.ts

8 lines
168 B
TypeScript
Raw Normal View History

2023-08-13 18:47:58 -04:00
import { Component, ComponentNames } from ".";
export class NetworkUpdateable extends Component {
constructor() {
super(ComponentNames.NetworkUpdateable);
}
}