mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-01-17 00:05:07 -05:00
16 lines
338 B
Java
Executable File
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;
|
|
}
|
|
}
|