summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs
blob: 36092480c8d4b46fa44e9d977250aa5261bf82ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Cristian Pop - https://boxophobic.com/

using UnityEngine;

namespace Boxophobic.StyledGUI
{
    public class StyledButton : PropertyAttribute
    {
        public string Text = "";
        public float Top = 0;
        public float Down = 0;

        public StyledButton(string Text, string Message)
        {
            this.Text = Text;
            this.Top = 0;
            this.Down = 0;
        }

        public StyledButton(string Text, float Top, float Down)
        {
            this.Text = Text;
            this.Top = Top;
            this.Down = Down;
        }
    }
}