Description
Allows to show the inputs from Input Manager pof Unity with a popup.
Reference

Use
The method “BuildInputList()” allows to get a enumeration (Popup) with all the inputs that manages Unity, to call this method you should use this method before “ReadInputs()”.
In this example you can see the use.
public void OnEnable()
{
CGFEditorUtilitiesClass.ReadInputs();
}
public void OnInspectorGUI()
{
CGFEditorUtilitiesClass.BuildInputList(enumerationName, serializedProperty);
}