NAK_CVR_Mods/.Deprecated/NAK.CustomComponents/Main.cs

15 lines
No EOL
396 B
C#

using ABI_RC.Core.Util.AssetFiltering;
using MelonLoader;
using NAK.CCK.CustomComponents;
namespace NAK.CustomComponents;
public class CustomComponents : MelonMod
{
public override void OnInitializeMelon()
{
// Add our CCK component to the prop whitelist
var propWhitelist = SharedFilter._avatarWhitelist;
propWhitelist.Add(typeof(NAKPointerTracker));
}
}