forked from Shardstone/trail-into-darkness
11 lines
233 B
C#
11 lines
233 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Nox.Game.UI {
|
|
public class PauseMenuReferences : MonoBehaviour {
|
|
public Button resumeButton;
|
|
public Button exitButton;
|
|
public Button saveButton;
|
|
}
|
|
}
|