Ejemplo n.º 1
0
 internal static bool IsKeyPressed(string itemName)
 {
     return(Kong.Item(itemName).GetValue <KeyBind>().Active);
 }
Ejemplo n.º 2
0
 internal static int GetStringListValue(string itemName)
 {
     return(Kong.Item(itemName).GetValue <StringList>().SelectedIndex);
 }
Ejemplo n.º 3
0
 internal static bool IsChecked(string itemName)
 {
     return(Kong.Item(itemName).GetValue <bool>());
 }
Ejemplo n.º 4
0
 internal static int GetSliderValue(string itemName)
 {
     return(Kong.Item(itemName).GetValue <Slider>().Value);
 }