NAK_CVR_Mods/NAK.CustomComponents/Main.cs
NotAKidoS a468487850 push
2023-04-25 15:04:09 -05:00

15 lines
No EOL
403 B
C#

using ABI_RC.Core.Util.AssetFiltering;
using MelonLoader;
using NAK.CCK.CustomComponents;
namespace NAK.Melons.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));
}
}