2021-03-18 14:51:13 -04: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-26 20:22:23 -04:00
|
|
|
|
|
|
|
public struct PlayerConnectArgs
|
|
|
|
{
|
|
|
|
public int PlayerId;
|
|
|
|
}
|
2021-03-18 14:51:13 -04:00
|
|
|
}
|