mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-17 22:48:04 +08:00
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; }
|
|||
|
}
|
|||
|
}
|