Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 224 Bytes

communications-event.md

File metadata and controls

13 lines (12 loc) · 224 Bytes

Communications

Remote Event

Broadcast the event to the client.

public interface IFoo
{
    event System.Action<string> BroadcastEvent;
}

Restrictions

Delegates only support System.Action<...>.