10 lines
277 B
C#
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
|
||
|
}
|