mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-01 05:49:23 +00:00
15 lines
No EOL
406 B
C#
15 lines
No EOL
406 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._spawnableWhitelist;
|
|
propWhitelist.Add(typeof(NAKPointerTracker));
|
|
}
|
|
} |