rimworld-animation-studio/Assets/Scripts/AnimationComponents/ActorAddonDef.cs
AbstractConcept e14a12f2ab Code refactor
2022-10-31 00:44:53 -05:00

15 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RimWorldAnimationStudio
{
public class ActorAddonDef
{
public string addonName;
public string label;
public float scale = 1f;
}
}