Home
last modified time | relevance | path

Searched refs:INotifySyncLobbyInfo (Results 1 – 3 of 3) sorted by relevance

/dports/games/openra/OpenRA-release-20200503/OpenRA.Game/Server/
H A DTraitInterfaces.cs19 public interface INotifySyncLobbyInfo { void LobbyInfoSynced(Server server); } in LobbyInfoSynced() interface
30 …public class DebugServerTrait : ServerTrait, IInterpretCommand, IStartGame, INotifySyncLobbyInfo, …
H A DServer.cs903 foreach (var t in serverTraits.WithInterface<INotifySyncLobbyInfo>()) in SyncLobbyInfo()
917 foreach (var t in serverTraits.WithInterface<INotifySyncLobbyInfo>()) in SyncLobbyClients()
931 foreach (var t in serverTraits.WithInterface<INotifySyncLobbyInfo>()) in SyncLobbySlots()
944 foreach (var t in serverTraits.WithInterface<INotifySyncLobbyInfo>()) in SyncLobbyGlobalSettings()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/ServerTraits/
H A DMasterServerPinger.cs23 …public class MasterServerPinger : ServerTrait, ITick, INotifyServerStart, INotifySyncLobbyInfo, IS…