mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-03 12:02:28 +08:00
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;
|
|
}
|
|
}
|