OpenSimMirror/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/c_sharp_example.txt

12 lines
261 B
Plaintext

//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");
}
}}