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

8 lines
198 B
C#

using UnityEngine;
namespace ConformalDecals.Text {
public class DecalFont : ScriptableObject {
[SerializeField] public string foo1;
[SerializeField] public string foo2;
}
}