Files
opensim/OpenSim.Framework/OSVector3.cs
MW 5ad6d5a939 First basic test script now works in the jvm scripting engine.
For it to work you need to have a java sdk installed and the javac.exe somewhere in the environment Path variable.
Then To test, copy the text from bin/script1.text into a note card and then add that note to a prim.
2007-04-11 12:13:21 +00:00

19 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Framework
{
public class OSVector3
{
public float X;
public float Y;
public float Z;
public OSVector3()
{
}
}
}