set svn:eol-style

afrisby
Jeff Ames 2007-12-08 10:04:06 +00:00
parent 5f516c9fb2
commit 5e08911400
1 changed files with 25 additions and 25 deletions

View File

@ -1,25 +1,25 @@
using System;
using libsecondlife;
namespace OpenSim.Framework
{
[Serializable]
public class sLLVector3
{
public sLLVector3()
{
}
public sLLVector3(LLVector3 v)
{
x = v.X;
y = v.Y;
z = v.Z;
}
public float x;
public float y;
public float z;
}
}
using System;
using libsecondlife;
namespace OpenSim.Framework
{
[Serializable]
public class sLLVector3
{
public sLLVector3()
{
}
public sLLVector3(LLVector3 v)
{
x = v.X;
y = v.Y;
z = v.Z;
}
public float x;
public float y;
public float z;
}
}