Worms4Editor/LibXom/Data/XomVector.cs

23 lines
387 B
C#
Raw Normal View History

2023-02-16 04:12:22 +00:00
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;
}
}
}