17 lines
299 B
C#
17 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!";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|