123456789101112131415161718192021222324252627 |
- // 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;
- }
- }
- }
|