colyseusTest / src /rooms /schema /MyRoomState.ts
Kano001's picture
Upload 4 files
c14e7e9 verified
raw
history blame contribute delete
171 Bytes
import { Schema, Context, type } from "@colyseus/schema";
export class MyRoomState extends Schema {
@type("string") mySynchronizedProperty: string = "Hello world";
}