mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
e8fd61fb4a
- added extended functionality for head rotations, invisible - tentative design for groupanimationdefs
24 lines
448 B
C#
24 lines
448 B
C#
using HarmonyLib;
|
|
using rjw;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace Rimworld_Animations
|
|
{
|
|
/*
|
|
[HarmonyPatch(typeof(JobDriver_Sex), "SexTick")]
|
|
public class HarmonyPatch_JobDriver_Sex
|
|
{
|
|
public static void Prefix(JobDriver_Sex __instance)
|
|
{
|
|
Pawn partner = __instance.Partner;
|
|
|
|
}
|
|
}
|
|
|
|
*/
|
|
}
|