19 lines
278 B
C#
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|