mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
17 lines
337 B
C#
17 lines
337 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;
|
|
|
|
public GraphicData graphicData;
|
|
}
|
|
}
|