server-master/srcs/WingsAPI.Game/GameEvent/Configuration/IGlobalGameEventConfiguration.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
267 B
C#

using WingsEmu.Game.Characters;
namespace WingsEmu.Game.GameEvent.Configuration;
public interface IGlobalGameEventConfiguration
{
IGameEventConfiguration GetConfiguration(IPlayerEntity character);
public uint GetRegistrationCost(IPlayerEntity character);
}