CLre/CLre_server/API/MainServer/ServerEventArgs.cs

14 lines
308 B
C#
Raw Normal View History

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{}
}