14 lines
308 B
C#
14 lines
308 B
C#
|
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{}
|
||
|
}
|