KSP-Conformal-Decals/Source/ConformalDecals/Text/TextRenderOutput.cs

16 lines
390 B
C#
Raw Normal View History

2020-07-24 21:39:35 +00:00
using UnityEngine;
namespace ConformalDecals.Text {
2020-07-27 02:32:58 +00:00
public class TextRenderOutput {
2020-07-24 21:39:35 +00:00
public Texture2D Texture { get; private set; }
public Rect Window { get; private set; }
2020-07-26 03:01:41 +00:00
public int UserCount { get; set; }
public TextRenderOutput(Texture2D texture, Rect window) {
2020-07-26 03:01:41 +00:00
Texture = texture;
Window = window;
}
2020-07-24 21:39:35 +00:00
}
}