using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using UnityEngine; using Verse; namespace Rimworld_Animations { public class Actor { public List defNames; public List requiredGenitals; public List raceOffsets; public List blacklistedRaces; public bool initiator = false; public string gender; public bool isFucking = false; public bool isFucked = false; public bool controlGenitalAngle = false; public List bodyDefTypes = new List(); public BodyTypeOffset bodyTypeOffset = new BodyTypeOffset(); public Vector3 offset = new Vector2(0, 0); public List requiredGender; } }