mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
8 lines
198 B
C#
8 lines
198 B
C#
using UnityEngine;
|
|
|
|
namespace ConformalDecals.Text {
|
|
public class DecalFont : ScriptableObject {
|
|
[SerializeField] public string foo1;
|
|
[SerializeField] public string foo2;
|
|
}
|
|
} |