mirror of
https://bitbucket.org/theswgsource/dsrc-1.2.git
synced 2026-07-14 00:01:32 -04:00
17 lines
367 B
Java
Executable File
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;
|
|
}
|
|
}
|