rimworld-animations/1.4/Source/Patches/RimworldPatches/HarmonyPatch_HeadHair.cs

23 lines
436 B
C#
Raw Normal View History

2023-12-03 06:48:42 +00:00
/*using HarmonyLib;
2022-10-05 20:50:02 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
using UnityEngine;
namespace Rimworld_Animations
{
[HarmonyPatch(typeof(PawnRenderer), "DrawHeadHair")]
public static class HarmonyPatch_HeadHair
{
public static void Prefix(ref Vector3 headOffset, ref float angle)
{
}
}
2023-12-03 06:48:42 +00:00
}*/