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

11 lines
No EOL
282 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Ship.Configuration;
namespace WingsEmu.Game.Ship;
public interface IShipManager
{
void AddShip(ShipInstance shipInstance);
ShipInstance GetShip(ShipType shipType);
IReadOnlyCollection<ShipInstance> GetShips();
}