TouhouLS/Assets/RealCode/Menu/ButtonS/ButtonHelp.cs

11 lines
196 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ButtonHelp : ButtonOnClick {
public override void OnClick() {
Application.LoadLevel(1);
}
}