private static BaseCharacterControl GetCharacter(this Object obj)
 {
     return(SearchComponentExtensions.GetCharacter(obj as GameObject));
 }
 private static T SearchComponent <T>(this Object obj) where T : Component
 {
     return(SearchComponentExtensions.SearchComponent <T>(obj as GameObject));
 }