jumpstorm/engine/components/NetworkUpdateable.ts

14 lines
338 B
TypeScript
Raw Normal View History

2023-08-25 18:48:17 -04:00
import { Component, ComponentNames } from '.';
2023-08-13 18:47:58 -04:00
export class NetworkUpdateable extends Component {
public isPublish: boolean;
public isSubscribe: boolean;
constructor(isPublish: boolean, isSubscribe: boolean) {
2023-08-13 18:47:58 -04:00
super(ComponentNames.NetworkUpdateable);
this.isPublish = isPublish;
this.isSubscribe = isSubscribe;
2023-08-13 18:47:58 -04:00
}
}