using UnityEngine; namespace EscapeRoomEngine.Desert.Runtime.Puzzle_A { /// /// A that includes the number of its assigned symbol. /// public class SymbolButton : HoloButton { [Tooltip("The number of the symbol assigned to this button.")] public int symbolNumber; } }