/// <summary> /// Queue a variable here in order to save it with the SaveQueue command /// </summary> /// <typeparam name="T">The type of the variable you want to save</typeparam> /// <param name="path">The path of the file you want to save the variable to</param> /// <param name="variableName">The name of the variable you want to save in the queue</param> /// <param name="value">The value you want to save in the queue</param> internal static void QueueVariable <T>(string variableName, T value, SavePaths path) { SaveEssentials.QueueSaveValue <T>(path, variableName, value); }
/// <summary> /// Queue a variable here in order to save it with the SaveQueue command /// </summary> /// <typeparam name="T">The type of the variable you want to save</typeparam> /// <param name="variableName">The name of the variable you want to save in the queue</param> /// <param name="value">The value you want to savein the queue</param> internal static void QueueVariable <T>(string variableName, T value) { SaveEssentials.QueueSaveValue <T>(variableName, value); }