projectEli/Assets/NeoFPS/Samples/Shared/UserInterface/Popups/IPrefabPopup.cs
2022-11-06 20:28:33 -05:00

19 lines
352 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using UnityEngine.UI;
using UnityEngine.Events;
namespace NeoFPS.Samples
{
public interface IPrefabPopup
{
Selectable startingSelection { get; }
BaseMenu menu { get; }
void OnShow(BaseMenu m);
void Back();
}
}