On Unity’s Website for what’s new in Unity 4 it says
“Editor: Create your own Inspector GUI for custom classes or attributes and see it used across all scripts that use those classes or attributes.”
How do I do this for my custom class FloatLimit?
class FloatLimit
{
var min: float;
var current: float;
var max: float;
}