Unofficial CardLife revival project, pronounced like "celery"
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

19 wiersze
386B

  1. namespace CLre_server.API.MainServer
  2. {
  3. public struct StartingEventArgs{}
  4. public struct StartedEventArgs
  5. {
  6. public string photonVersion;
  7. public CloudRegionCode photonRegion;
  8. public string worldName;
  9. public string gameGuid;
  10. }
  11. public struct StopEventArgs{}
  12. public struct PlayerConnectArgs
  13. {
  14. public int PlayerId;
  15. }
  16. }