12 lines
313 B
C#
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);
|
|
}
|
|
}
|