Skip to content

Instantly share code, notes, and snippets.

@Syjgin
Last active January 20, 2022 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Syjgin/3968db0137cb57974a969a1893bda69b to your computer and use it in GitHub Desktop.
Save Syjgin/3968db0137cb57974a969a1893bda69b to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace Dialogues.PopupQueue
{
public struct MainMenuPopupDefinition : IPopupQueueElement
{
public PopupQueueElementType ElementType => PopupQueueElementType.MainMenuPopup;
public IEnumerable<PopupQueueElementType> DenyNextElementTypes => new List<PopupQueueElementType>
{
PopupQueueElementType.AirshipPopup
};
public PopupQueueOperation OpenOperation => PopupQueueOperation.HidePrevious;
public bool CanBeHidden => true;
public bool IsIgnoreDenyElements { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment