summaryrefslogtreecommitdiff
path: root/engine/components/NetworkUpdateable.ts
blob: 980b0646e3873f36770e75198fe27cf8e8ed8194 (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;
  }
}