Scriptum/Assets/Scripts/Domain/DialoguePanel/Enum/PanelButtonEnum.cs

10 lines
277 B
C#
Raw Normal View History

2022-10-16 19:40:44 +02:00
// 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
}