Skip to content

Instantly share code, notes, and snippets.

@suakig
Created April 17, 2015 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suakig/d97d92b2837f85c68d32 to your computer and use it in GitHub Desktop.
Save suakig/d97d92b2837f85c68d32 to your computer and use it in GitHub Desktop.
MinMaxSliderValue
using UnityEngine;
using System.Collections;
[System.Serializable]
public class MinMaxSliderValue
{
public float minValue = 0;
public float maxValue = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment