Better avatar setup detection

This commit is contained in:
SDraw 2022-09-02 21:25:40 +03:00
parent 2f9a46e471
commit 0794564563
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
5 changed files with 38 additions and 50 deletions

View file

@ -1,7 +1,12 @@
namespace ml_lme
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;