2021-03-18 18:51:13 +00:00
|
|
|
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{}
|
2021-05-27 01:22:23 +01:00
|
|
|
|
|
|
|
public struct PlayerConnectArgs
|
|
|
|
{
|
|
|
|
public int PlayerId;
|
|
|
|
}
|
2021-03-18 18:51:13 +00:00
|
|
|
}
|