sdraw_mods_cvr/ml_prm/Utils.cs
SDraw bc6e289495
New mod - PlayerRagdollMod
Update to MelonLoader 0.6.1
2023-04-08 02:51:46 +03:00

18 lines
400 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace ml_prm
{
static class Utils
{
public static void CopyGlobal(this Transform p_source, Transform p_target)
{
p_target.position = p_source.position;
p_target.rotation = p_source.rotation;
}
}
}