RustDedicated/Assembly-CSharp/ExecComponent.cs
2025-05-25 05:29:54 +09:30

11 lines
195 B
C#

using UnityEngine;
public class ExecComponent : MonoBehaviour
{
public string ExecToRun = string.Empty;
public void Run()
{
ConsoleSystem.Run(ConsoleSystem.Option.Client, ExecToRun);
}
}