12 lines
196 B
C#
12 lines
196 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Core.API
|
|
{
|
|
public interface ITextLabel : IEntity
|
|
{
|
|
string Text { get; set; }
|
|
}
|
|
}
|