protected void LobbySystemPointerClickHandler(uFrame.ECS.PointerClickDispatcher data, LobbyButton source) { var handler = LobbySystemPointerClickHandlerInstance; handler.System = this; handler.Event = data; handler.Source = source; StartCoroutine(handler.Execute()); }
protected void PhotonSystemOnJoinedRoomHandler(uFrame.ECS.OnJoinedRoomDispatcher data, LobbyButton source) { var handler = PhotonSystemOnJoinedRoomHandlerInstance; handler.System = this; handler.Event = data; handler.Source = source; StartCoroutine(handler.Execute()); }
protected void PhotonSystemOnPhotonJoinRoomFailedHandler(uFrame.ECS.OnPhotonJoinRoomFailedDispatcher data, LobbyButton source) { var handler = PhotonSystemOnPhotonJoinRoomFailedHandlerInstance; handler.System = this; handler.Event = data; handler.Source = source; StartCoroutine(handler.Execute()); }