summaryrefslogtreecommitdiff
path: root/engine/components/NetworkUpdateable.ts
blob: 73ceeba658f51c3ff868c9290d677ce1d02f73c4 (plain)
1
2
3
4
5
6
7
import { Component, ComponentNames } from ".";

export class NetworkUpdateable extends Component {
  constructor() {
    super(ComponentNames.NetworkUpdateable);
  }
}