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/TextRenderOutput.cs

16 lines
390 B
C#

using UnityEngine;
namespace ConformalDecals.Text {
public class TextRenderOutput {
public Texture2D Texture { get; private set; }
public Rect Window { get; private set; }
public int UserCount { get; set; }
public TextRenderOutput(Texture2D texture, Rect window) {
Texture = texture;
Window = window;
}
}
}