You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KSP-Conformal-Decals/Source/ConformalDecals/Text/RenderedText.cs

11 lines
268 B
C#

using UnityEngine;
namespace ConformalDecals.Text {
public class RenderedText : ScriptableObject {
public Texture2D Texture { get; private set; }
public Rect Window { get; private set; }
public int UserCount { get; private set; }
}
}