mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-15 07:56:41 +08:00

* More unstripping fixes. Explorer now works 100% on a blank Unity project (so should therefore work on any Unity game, regardless of stripping). * Some cleanups
15 lines
279 B
C#
15 lines
279 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Explorer.Unstrip.IMGUI
|
|
{
|
|
public class SliderStateUnstrip
|
|
{
|
|
public float dragStartPos;
|
|
public float dragStartValue;
|
|
public bool isDragging;
|
|
}
|
|
}
|