Uses of Interface
net.mtrop.doom.util.WadUtils.WadFunction
Packages that use WadUtils.WadFunction
-
Uses of WadUtils.WadFunction in net.mtrop.doom.util
Methods in net.mtrop.doom.util with parameters of type WadUtils.WadFunctionModifier and TypeMethodDescriptionstatic WadBuffer
WadUtils.openWadAndExtractBuffer
(File path, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new returnedWadBuffer
, and then closes it automatically afterward.static WadBuffer
WadUtils.openWadAndExtractBuffer
(String path, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new returnedWadBuffer
, and then closes it automatically afterward.static void
WadUtils.openWadAndExtractTo
(File path, File outPath, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new WAD, and then closes both automatically afterward.static void
WadUtils.openWadAndExtractTo
(File path, String outPath, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new WAD, and then closes both automatically afterward.static void
WadUtils.openWadAndExtractTo
(String path, File outPath, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new WAD, and then closes both automatically afterward.static void
WadUtils.openWadAndExtractTo
(String path, String outPath, WadUtils.WadFunction<WadEntry[]> wadFunction) Opens a WAD file, exports a list of entries to a new WAD, and then closes both automatically afterward.static <R> R
WadUtils.openWadAndGet
(File path, WadUtils.WadFunction<R> wadFunction) Opens a WAD file, retrieves information from it (which is returned), and then closes it automatically afterward.static <R> R
WadUtils.openWadAndGet
(String path, WadUtils.WadFunction<R> wadFunction) Opens a WAD file, retrieves information from it, and then closes it automatically afterward.