Files
2018-06-07 00:32:29 +01:00

17 lines
367 B
Java
Executable File

package script.object;
import script.dictionary;
import script.obj_id;
public class location_object extends script.base_script
{
public location_object()
{
}
public int handlerDestroyLocationObject(obj_id self, dictionary params) throws InterruptedException
{
destroyObject(self);
return SCRIPT_CONTINUE;
}
}