mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-15 22:07:48 +08:00

- Added ability to cycle through "pages" with lists/arrays and with search results. Also reduced default array display limit to 20 elements, since we can now just cycle through pages. - Some backend restructuring / cleanups
20 lines
471 B
C#
20 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Explorer
|
|
{
|
|
public abstract class MemberInfoHolder
|
|
{
|
|
public Type classType;
|
|
public bool IsExpanded = false;
|
|
public int arrayOffset = 0;
|
|
|
|
public abstract void Draw(ReflectionWindow window);
|
|
public abstract void UpdateValue(object obj);
|
|
public abstract void SetValue(object obj);
|
|
}
|
|
}
|