Files
dsrc/sku.0/sys.server/compiled/game/script/structure/item_structure.java
2018-06-07 00:32:29 +01:00

16 lines
338 B
Java
Executable File

package script.structure;
import script.menu_info;
import script.obj_id;
public class item_structure extends script.base_script
{
public item_structure()
{
}
public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException
{
return SCRIPT_CONTINUE;
}
}