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

16 lines
349 B
C#
Raw Normal View History

2020-07-20 04:12:48 +00:00
using System;
using TMPro;
using UnityEngine;
namespace ConformalDecals.Text {
public struct DecalText {
public string text;
public DecalFont font;
public FontStyles style;
public bool vertical;
public Color color;
public Color outlineColor;
public float outlineWidth;
}
}