mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-04 02:49:23 +00:00
17 lines
377 B
C#
17 lines
377 B
C#
using ABI_RC.Core.Player;
|
|
using System.Linq;
|
|
|
|
namespace ml_lme
|
|
{
|
|
static class Utils
|
|
{
|
|
public static bool AreKnucklesInUse() => PlayerSetup.Instance._trackerManager.trackerNames.Contains("knuckles");
|
|
|
|
public static void Swap<T>(ref T lhs, ref T rhs)
|
|
{
|
|
T temp = lhs;
|
|
lhs = rhs;
|
|
rhs = temp;
|
|
}
|
|
}
|
|
}
|