internal static void Prefix(ref MultiplayerLobbyAvatarController ____multiplayerLobbyAvatarControllerPrefab)
 {
     if (!____multiplayerLobbyAvatarControllerPrefab.gameObject.TryGetComponent <CustomAvatarController>(out CustomAvatarController _))
     {
         ____multiplayerLobbyAvatarControllerPrefab.gameObject.AddComponent <CustomAvatarController>();
     }
 }
 internal static void Prefix(ref MultiplayerLobbyAvatarController ____multiplayerLobbyAvatarControllerPrefab)
 {
     try
     {
         if (!____multiplayerLobbyAvatarControllerPrefab.gameObject.TryGetComponent <CustomAvatarController>(out CustomAvatarController _))
         {
             ____multiplayerLobbyAvatarControllerPrefab.gameObject.AddComponent <CustomAvatarController>();
         }
     }
     catch (Exception ex)
     {
         Plugin.Log.Error(ex);
         throw;
     }
 }