miuu-sandbox/ConsoleCommands.cs
2024-02-01 01:06:57 -05:00

16 lines
299 B
C#

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!";
}
}
}