com.parzivail.util.data.IExternalReloadResourceManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pswg Show documentation
Show all versions of pswg Show documentation
Explore the galaxy with Galaxies: Parzi's Star Wars Mod!
package com.parzivail.util.data;
import net.minecraft.class_3300;
import net.minecraft.class_3695;
public interface IExternalReloadResourceManager
{
/**
* Prepares the intermediate object.
*
* This method is called in the prepare executor in a reload.
*
* @param profiler the prepare profiler
* @param manager the resource manager
*
* @return the prepared object
*/
T prepare(class_3300 manager, class_3695 profiler);
/**
* Handles the prepared intermediate object.
*
*
This method is called in the apply executor, or the game engine, in a
* reload.
*
* @param manager the resource manager
* @param profiler the apply profiler
* @param prepared the prepared object
*/
void apply(T prepared, class_3300 manager, class_3695 profiler);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy