mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
14 lines
No EOL
419 B
C#
14 lines
No EOL
419 B
C#
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
namespace TMPro
|
|
{
|
|
class TMP_SerializedPropertyHolder : ScriptableObject
|
|
{
|
|
public TMP_FontAsset fontAsset;
|
|
public uint firstCharacter;
|
|
public uint secondCharacter;
|
|
|
|
public TMP_GlyphPairAdjustmentRecord glyphPairAdjustmentRecord = new TMP_GlyphPairAdjustmentRecord(new TMP_GlyphAdjustmentRecord(), new TMP_GlyphAdjustmentRecord());
|
|
}
|
|
} |