haus system auf core geändert
This commit is contained in:
16
ReallifeGamemode.Server.Core.RageMP/RageBlipAPI.cs
Normal file
16
ReallifeGamemode.Server.Core.RageMP/RageBlipAPI.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using GTANetworkAPI;
|
||||
using ReallifeGamemode.Server.Core.API;
|
||||
|
||||
namespace ReallifeGamemode.Server.Core.RageMP
|
||||
{
|
||||
class RageBlipAPI : IBlipAPI
|
||||
{
|
||||
public IBlip CreateBlip(uint sprite, Position position, string name, byte color, byte alpha, float scale, float drawDistance, bool shortRange)
|
||||
{
|
||||
return new RageBlip(NAPI.Blip.CreateBlip(sprite, position.ToVector3(), scale, color, name, alpha, drawDistance, shortRange));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user