28 lines
469 B
C#
28 lines
469 B
C#
// 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;
|
|
}
|
|
}
|
|
|
|
}
|
|
|