Files
airplane-mode/scripts/room_state.gd

11 lines
251 B
GDScript3
Raw Normal View History

# res://scripts/room_state.gd
extends "res://addons/godot_colyseus/lib/schema.gd"
class_name RoomState
var mySynchronizedProperty: String = "Hello world"
static func define_fields():
return [
Field.new("mySynchronizedProperty", Types.STRING),
]