Files
reallife-gamemode/ReallifeGamemode.Server.Core.API/ITextLabelAPI.cs
2020-03-12 19:19:42 +01:00

13 lines
309 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ReallifeGamemode.Server.Types;
namespace ReallifeGamemode.Server.Core.API
{
public interface ITextLabelAPI
{
ITextLabel CreateTextLabel(string text, Position position, float range, float size, Font font, Color color);
}
}