Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Kano001/colyseus
Kano001
/
colyseusTest
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
colyseusTest
/
src
/
rooms
/
schema
/
MyRoomState.ts
Kano001
Upload 4 files
c14e7e9
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
171 Bytes
import
{
Schema
,
Context
,
type
}
from
"@colyseus/schema"
;
export
class
MyRoomState
extends
Schema
{
@type
(
"string"
)
mySynchronizedProperty
:
string
=
"Hello world"
;
}