miuu-sandbox/ConsoleCommands.cs

17 lines
299 B
C#
Raw Normal View History

2024-02-01 01:06:57 -05:00
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!";
}
}
}