using MIU; using System; using System.Collections.Generic; using UnityEngine; namespace Sandbox { internal class ConsoleCommands { [ConsoleCommand(description = "Simple hello world testing command")] public static string hello(params string[] args) { return "Hello, World!"; } } }