fix: make natives internal

This commit is contained in:
roflmuffin
2025-11-04 13:29:00 +00:00
parent d999da91c8
commit ed919216f1
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ using CounterStrikeSharp.API.Modules.Utils;
namespace CounterStrikeSharp.API.Core
{
public class NativeAPI {
internal static class NativeAPI {
public static bool AddListener(string name, InputArgument callback){
lock (ScriptContext.GlobalScriptContext.Lock) {

View File

@@ -96,7 +96,7 @@ using CounterStrikeSharp.API.Modules.Utils;
namespace CounterStrikeSharp.API.Core
{{
public class NativeAPI {{
internal static class NativeAPI {{
{nativesString}
}}
}}