mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
16 lines
311 B
Java
Executable File
16 lines
311 B
Java
Executable File
package script.beta;
|
|
|
|
import script.obj_id;
|
|
|
|
public class food extends script.base_script
|
|
{
|
|
public food()
|
|
{
|
|
}
|
|
public static final String SCRIPT_BETA_FOOD = "beta.food";
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|