mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-01-17 00:05:07 -05:00
15 lines
280 B
Java
Executable File
15 lines
280 B
Java
Executable File
package script.test;
|
|
|
|
import script.obj_id;
|
|
|
|
public class fs_quest_test extends script.base_script
|
|
{
|
|
public fs_quest_test()
|
|
{
|
|
}
|
|
public int OnSpeaking(obj_id self, String text) throws InterruptedException
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|