summaryrefslogtreecommitdiff
path: root/godot/scripts/machines
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2022-10-07 15:49:57 -0400
committerAnson Bridges <bridges.anson@gmail.com>2022-10-07 15:49:57 -0400
commit7dbec964a375598d454e04719576eb6c469a5d7b (patch)
treefa819e5e843ecdd88375ad1806ab43358b1ea670 /godot/scripts/machines
parent62c33688cf2f48d7669790a89e3d1cdec16798be (diff)
ai work
Diffstat (limited to 'godot/scripts/machines')
-rw-r--r--godot/scripts/machines/NetworkedMachineGDS.gd3
1 files changed, 2 insertions, 1 deletions
diff --git a/godot/scripts/machines/NetworkedMachineGDS.gd b/godot/scripts/machines/NetworkedMachineGDS.gd
index a8ee1da..91dbeb4 100644
--- a/godot/scripts/machines/NetworkedMachineGDS.gd
+++ b/godot/scripts/machines/NetworkedMachineGDS.gd
@@ -1,8 +1,9 @@
extends RigidBody
+class_name NetMachine
var in_use: bool = false
var controllable: bool = false
-var user: RigidBody = null
+var user: NetChar = null
var world: Spatial = null
func _ready():