Some more work on new ScriptEngine.

This commit is contained in:
Tedd Hansen
2007-10-05 19:56:44 +00:00
parent 29aa41daa0
commit 6dd923b01d
35 changed files with 8174 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
//c#
namespace SecondLife {
public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass
{
public Script() { }
public void default_event_state_entry( )
{
llSay(0, "testing, I've been touched");
}
}}