-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
707198e
commit c9a01d4
Showing
4 changed files
with
48 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using UnityEngine; | ||
using UnityEngine.UI; | ||
|
||
namespace OWML.Common | ||
namespace OWML.Common | ||
{ | ||
public interface IPauseMenuManager | ||
{ | ||
public Menu MakePauseListMenu(string title); | ||
|
||
public SubmitAction MakeSimpleButton(string name, Menu customMenu = null); | ||
public SubmitAction MakeSimpleButton(string name, int index, bool fromTop, Menu customMenu = null); | ||
|
||
public SubmitAction MakeMenuOpenButton(string name, Menu menuToOpen, int index, bool fromTop, Menu customMenu = null); | ||
|
||
public GameObject MakeMenuOpenButton(string name, Menu menuToOpen, Menu customMenu = null); | ||
public void SetButtonText(SubmitAction button, string text); | ||
|
||
public void SetButtonIndex(SubmitAction button, int index, bool fromTop); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters