Files
BarotraumaModServer/LocalMods/More Level Content/CSharp/Shared/Utils/CommandUtils.cs
2026-06-09 00:42:10 +03:00

13 lines
415 BLFS
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace Barotrauma.MoreLevelContent.Shared.Utils
{
public static class CommandUtils
{
public static void AddCommand(string cmdName, string cmdHelp, LuaCsAction callback, LuaCsFunc args = null, bool isCheat = false) =>
GameMain.LuaCs.Game.AddCommand(cmdName, cmdHelp, callback, args, isCheat);
}
}