maint: added livewatch asset
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Serialization;
|
||||
|
||||
namespace Ingvar.LiveWatch
|
||||
{
|
||||
[Serializable]
|
||||
public class VariableEditorMeta
|
||||
{
|
||||
public bool IsExpanded;
|
||||
|
||||
[NonSerialized] public int LastStringToNumberValue = -1;
|
||||
[NonSerialized] public Dictionary<string, int> StringToNumberValues;
|
||||
[NonSerialized] public VariableSearchResultMeta SearchResult;
|
||||
[NonSerialized] public int LastNonShrinkableIndexOfKey = -1;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user