Scriptum/Assets/Scripts/REFACTORING/Application/Dialogue/Panel/Enum/PanelButtonEnum.cs
2022-12-04 20:48:40 +01:00

10 lines
277 B
C#

// if you want to add new button and new button prefab you must:
// - add button mark to this enum
// - add new compose function to PanelComponentFactory class
public enum PanelButtonEnum
{
Continue = 0,
Base = 1, // no type button
Accept = 2,
Reject = 3
}