Files
dsrc-1.2/sku.0/sys.server/compiled/game/script/object/location_object.java
T
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;
}
}