|
12345678910111213141516171819 |
- namespace CLre_server.API.MainServer
- {
- public struct StartingEventArgs{}
-
- public struct StartedEventArgs
- {
- public string photonVersion;
- public CloudRegionCode photonRegion;
- public string worldName;
- public string gameGuid;
- }
-
- public struct StopEventArgs{}
-
- public struct PlayerConnectArgs
- {
- public int PlayerId;
- }
- }
|