summaryrefslogtreecommitdiff
path: root/Assets/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs
blob: 8fd73a339fa447eb7068870c93570caa68d9cbc6 (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
// Cristian Pop - https://boxophobic.com/

using UnityEngine;

namespace Boxophobic.StyledGUI
{
    public class StyledInteractive : PropertyAttribute
    {
        public int value;
        public string keyword;
        public int type;

        public StyledInteractive(int v)
        {
            type = 0;
            value = v;
        }

        public StyledInteractive(string k)
        {
            type = 1;
            keyword = k;
        }
    }

}