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

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