15 lines
295 B
C#
15 lines
295 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace NeoFPS.Samples
|
|
{
|
|
[HelpURL("http://docs.neofps.com/manual/samples-ui.html")]
|
|
public class MainMenuRootNavControls : MenuNavControls
|
|
{
|
|
public override void Back ()
|
|
{
|
|
base.Back ();
|
|
}
|
|
}
|
|
} |