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

8 lines
No EOL
166 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Ship.Configuration;
public interface IShipConfigurationProvider
{
IReadOnlyList<Ship> GetShips();
}