server-master/srcs/WingsAPI.Game/Core/ECS/Systems/IDropSystem.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
305 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Maps;
namespace WingsEmu.Game._ECS.Systems;
public interface IDropSystem
{
IReadOnlyList<MapItem> Drops { get; }
void AddDrop(MapItem item);
bool RemoveDrop(long dropId);
bool HasDrop(long dropId);
MapItem GetDrop(long dropId);
}