static public void Inspect(this GameObject gameObject) { Inspector.Inspect(gameObject); }
static public void Inspect <T>(this T component) where T : Component { Inspector.Inspect(component); }
void OnClick() { Inspector.Inspect(component, type); }