aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenSim.Framework/Types/OSVector3.cs
blob: 8fb840b9fc4235079e9f86317e5b4b819eef1c84 (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.Types
{
    public class OSVector3
    {
        public float X;
        public float Y;
        public float Z;

        public OSVector3()
        {

        }
    }
}