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

19 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
using ReallifeGamemode.Server.Core.API;
namespace ReallifeGamemode.Server.Core.RageMP
{
class RageBlip : RageEntity, IBlip
{
private Blip blip;
public RageBlip(Blip blip) : base(blip)
{
this.blip = blip;
}
}
}