GuiReady: Difference between revisions
(Created page with "{{ClientsideCsEvent}}") |
No edit summary |
||
| Line 1: | Line 1: | ||
{{ClientsideCsEvent}} | {{ClientsideCsEvent}} | ||
{{CSharpContainer| | |||
<syntaxhighlight lang="c#"> | |||
public delegate void OnGuiReadyDelegate(); | |||
</syntaxhighlight> | |||
{{Parameters}} | |||
* This event requires no parameters | |||
{{Example}} | |||
<syntaxhighlight lang="c#"> | |||
Events.OnGuiReady += OnGuiReady; | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="c#"> | |||
public void OnGuiReady() | |||
{ | |||
} | |||
</syntaxhighlight> | |||
}} | |||
Revision as of 14:21, 29 November 2018
Client-Side Event
C# Syntax
public delegate void OnGuiReadyDelegate();
Parameters
- This event requires no parameters
Example
Events.OnGuiReady += OnGuiReady;
public void OnGuiReady()
{
}