aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/OSVector3.cs
blob: b5d12233c101cda635d68b1205ba730cb9ba8cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()
        {

        }
    }
}