Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
27 lines
478 B
Java
27 lines
478 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package wasm.misc;
|
|
|
|
import wasm.disassembly.modules.sections.code.Func;
|
|
import wasm.disassembly.types.FuncType;
|
|
|
|
public interface StreamReplacement {
|
|
public FuncType getFuncType();
|
|
|
|
public ReplacementType getReplacementType();
|
|
|
|
public String getImportName();
|
|
|
|
public String getExportName();
|
|
|
|
public boolean codeMatches(Func var1);
|
|
|
|
public static enum ReplacementType {
|
|
HOOK,
|
|
HOOKCOPYEXPORT;
|
|
|
|
}
|
|
}
|
|
|