| | 1 | | namespace DCL |
| | 2 | | { |
| | 3 | | public class DataStore_Cursor |
| | 4 | | { |
| | 5 | | public enum CursorType |
| | 6 | | { |
| | 7 | | NORMAL, |
| | 8 | | HOVER |
| | 9 | | } |
| | 10 | |
|
| 628 | 11 | | public readonly BaseVariable<bool> cursorVisible = new BaseVariable<bool>(true); |
| 628 | 12 | | public readonly BaseVariable<CursorType> cursorType = new BaseVariable<CursorType>(CursorType.NORMAL); |
| 628 | 13 | | public readonly BaseVariable<bool> hoverFeedbackEnabled = new BaseVariable<bool>(false); |
| 628 | 14 | | public readonly BaseVariable<bool> hoverFeedbackHoverState = new BaseVariable<bool>(false); |
| 628 | 15 | | public readonly BaseVariable<string> hoverFeedbackButton = new BaseVariable<string>(); |
| 628 | 16 | | public readonly BaseVariable<string> hoverFeedbackText = new BaseVariable<string>(); |
| | 17 | | } |
| | 18 | | } |