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

16 lines
374 B
C#
Raw Normal View History

2020-07-24 21:39:35 +00:00
using UnityEngine;
namespace ConformalDecals.Text {
2020-07-26 03:01:41 +00:00
public class RenderedText {
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 RenderedText(Texture2D texture, Rect window) {
Texture = texture;
Window = window;
}
2020-07-24 21:39:35 +00:00
}
}