aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/c_sharp_example.txt
blob: a39d1dbbc0f6b065e3271400f5eb35e058855cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
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");
  }

}}