Worms4Editor/LibXom/Data/XomVector.cs

23 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibXom.Data
{
public class XomVector
{
public float X;
public float Y;
public float Z;
public XomVector(float x, float y, float z)
{
X = x;
Y = y;
Z = z;
}
}
}