CLre/CLre_server/API/MainServer/ServerEventArgs.cs

19 lines
386 B
C#
Raw Permalink 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{}
2021-05-27 01:22:23 +01:00
public struct PlayerConnectArgs
{
public int PlayerId;
}
}