diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-26 17:55:27 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-08-26 17:55:27 -0600 |
commit | 6ce6946a4401d2ee6fa5cb747fab7d4c658a63c8 (patch) | |
tree | e60767dc5295edf379cf421e20171dc418e548b7 /engine/components/NetworkUpdateable.ts | |
parent | 594921352c8d82fe5f1a6201a4d5f9fbd9b719fc (diff) | |
download | jumpstorm-6ce6946a4401d2ee6fa5cb747fab7d4c658a63c8.tar.gz jumpstorm-6ce6946a4401d2ee6fa5cb747fab7d4c658a63c8.zip |
add entity updates over network!
Diffstat (limited to 'engine/components/NetworkUpdateable.ts')
-rw-r--r-- | engine/components/NetworkUpdateable.ts | 8 |
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; } } |