Add changes

This commit is contained in:
hydrant
2020-03-12 19:19:42 +01:00
parent 06c2a2092f
commit 5e3bc39275
43 changed files with 390 additions and 642 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
using ReallifeGamemode.Server.Core.API;
namespace ReallifeGamemode.Server.Core.RageMP
{
public class RageTextLabel : RageEntity, ITextLabel
{
private TextLabel textLabel;
public string Text { get => textLabel.Text; set => textLabel.Text = value; }
public RageTextLabel(TextLabel textLabel) : base(textLabel)
{
this.textLabel = textLabel;
}
}
}