This commit is contained in:
Platinum 2020-04-08 17:43:01 -07:00
parent 74a34b6f8d
commit 55ae1c5d10
29 changed files with 1387 additions and 28 deletions

18
Source/Actors/Actor.cs Normal file
View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Rimworld_Animations {
public class Actor {
public List<string> defNames;
public List<string> requiredGenitals;
public bool activeRole = false;
public string gender;
public bool isFucking = false;
public bool isFucked = false;
public Vector3 offset = new Vector3(0, 0, 0);
}
}