11 lines
195 B
C#
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);
|
|
}
|
|
}
|