Roblox-File-Format/DataTypes/Region3int16.cs
CloneTrooper1019 9cfd5b2211 Initial commit.
There's a lot of code at play here, so I haven't tested it yet.
A good chunk of the components are available though.
2019-01-25 18:39:37 -06:00

25 lines
529 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Roblox.DataTypes
{
public struct Region3int16
{
public readonly Vector3int16 Min, Max;
public Region3int16(Vector3int16? min, Vector3int16? max)
{
Min = min ?? new Vector3int16();
Max = max ?? new Vector3int16();
}
public override string ToString()
{
return string.Join("; ", Min, Max);
}
}
}