mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
25 lines
448 B
C#
25 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;
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
*/
|
|||
|
}
|