mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-04 20:42:22 +08:00
23 lines
354 B
C#
23 lines
354 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Explorer.UI.Main.Pages
|
|
{
|
|
public class ConsolePage : BaseMenuPage
|
|
{
|
|
public override string Name => "C# Console";
|
|
|
|
public override void Init()
|
|
{
|
|
|
|
}
|
|
|
|
public override void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|