summaryrefslogtreecommitdiff
path: root/engine/components/NetworkUpdateable.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/components/NetworkUpdateable.ts')
-rw-r--r--engine/components/NetworkUpdateable.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/engine/components/NetworkUpdateable.ts b/engine/components/NetworkUpdateable.ts
index 7fb6d18..014270c 100644
--- a/engine/components/NetworkUpdateable.ts
+++ b/engine/components/NetworkUpdateable.ts
@@ -1,13 +1,7 @@
import { Component, ComponentNames } from '.';
export class NetworkUpdateable extends Component {
- public isPublish: boolean;
- public isSubscribe: boolean;
-
- constructor(isPublish: boolean, isSubscribe: boolean) {
+ constructor() {
super(ComponentNames.NetworkUpdateable);
-
- this.isPublish = isPublish;
- this.isSubscribe = isSubscribe;
}
}