Files
reallife-gamemode/ReallifeGamemode.Server.Core.API/IBlipAPI.cs
2020-04-05 17:25:06 +02:00

12 lines
313 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, float scale, byte alpha = 255, float drawDistance = 0, bool shortRange = false);
}
}