using System; using System.Collections.Generic; using System.Text; namespace ReallifeGamemode.Server.Core.API { public interface IBlipAPI { IBlip CreateBlip(uint sprite, Position position, string name, byte color, byte alpha, float scale, float drawDistance, bool shortRange); } }