mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 15:40:29 +01:00
Changed class and methods from public to internal
This commit is contained in:
parent
cd41c9f240
commit
23a0b0040e
1 changed files with 7 additions and 3 deletions
|
|
@ -1,12 +1,16 @@
|
||||||
using RAGENativeUI;
|
using RAGENativeUI;
|
||||||
|
using RAGENativeUI.Elements;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
|
||||||
namespace SceneManager
|
namespace SceneManager
|
||||||
{
|
{
|
||||||
public static class MenuManager
|
internal static class MenuManager
|
||||||
{
|
{
|
||||||
public static MenuPool menuPool = new MenuPool();
|
internal static MenuPool menuPool = new MenuPool();
|
||||||
|
internal static Dictionary<UIMenu, List<UIMenuItem>> menus = new Dictionary<UIMenu, List<UIMenuItem>>();
|
||||||
|
|
||||||
public static void InstantiateMenus()
|
internal static void InstantiateMenus()
|
||||||
{
|
{
|
||||||
MainMenu.InstantiateMenu();
|
MainMenu.InstantiateMenu();
|
||||||
SettingsMenu.InstantiateMenu();
|
SettingsMenu.InstantiateMenu();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue