rimworld-animation-studio/Assets/Scripts/GUI/Props/SexProp.cs

13 lines
190 B
C#
Raw Normal View History

2022-10-08 02:52:27 +00:00
using System;
using UnityEngine;
namespace RimWorldAnimationStudio
{
[Serializable]
public class SexProp
{
public string label;
public Sprite sprite;
}
}