rimworld-animation-studio/Assets/Scripts/GUI/Props/SexProp.cs
AbstractConcept a55ba7b95b Code refactor
2022-10-28 00:28:51 -05:00

12 lines
190 B
C#

using System;
using UnityEngine;
namespace RimWorldAnimationStudio
{
[Serializable]
public class SexProp
{
public string label;
public Sprite sprite;
}
}