summaryrefslogtreecommitdiff
path: root/engine/components/NetworkUpdateable.ts
blob: 7fb6d188bd9f6dfdecacaa6eb10c7ef90303b6aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Component, ComponentNames } from '.';

export class NetworkUpdateable extends Component {
  public isPublish: boolean;
  public isSubscribe: boolean;

  constructor(isPublish: boolean, isSubscribe: boolean) {
    super(ComponentNames.NetworkUpdateable);

    this.isPublish = isPublish;
    this.isSubscribe = isSubscribe;
  }
}