Files
reallife-gamemode/ReallifeGamemode.Server.Core.API/IBlipAPI.cs
2020-03-29 13:58:50 +02:00

12 lines
295 B
C#

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);
}
}