mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
16 lines
349 B
C#
16 lines
349 B
C#
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;
|
|
}
|
|
} |