-
Notifications
You must be signed in to change notification settings - Fork 23
Development EventBlock
SO HYUN SEOP edited this page Mar 18, 2018
·
1 revision
[GCommand("콘솔에 입력된 경우")]
public static event ReceivedEventHandler Received;
public delegate void ReceivedEventHandler([GParameter("입력된 문자")] string value);
이벤트 블록의 구현 또한 간단합니다. 일반적인 형태의 정적 이벤트를 작성한 후 이벤트에 GCommand Attribute를 추가합니다. 그 다음 이벤트와 연결된 대리자에 인자가 존재하는 경우 해당 인자의 내용을 설명하기 위한 GParameter Attribute를 작성하면 해당 이벤트는 하나의 이벤트 블록으로 변환됩니다.