Define events supported by IPlayer and their corresponding parameters.

interface INetworkEvents {
    joined: (() => void);
    left: (() => void);
}

Properties

Properties

joined: (() => void)

Triggered when the player successfully connects and joins the session.

left: (() => void)

Triggered when the player disconnects or leaves the session.