mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-01 11:12:49 +08:00

* Fix for when inspected object gets destroyed * Fix for displaying Dictionaries/Lists nested inside a Dictionary * Cleanups
17 lines
307 B
C#
17 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Explorer
|
|
{
|
|
interface IExpandHeight
|
|
{
|
|
bool IsExpanded { get; set; }
|
|
|
|
float WhiteSpace { get; set; }
|
|
float ButtonWidthOffset { get; set; }
|
|
}
|
|
}
|