2019-01-26 00:39:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles.DataTypes
|
2019-01-26 00:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
public struct Region3int16
|
|
|
|
|
{
|
|
|
|
|
public readonly Vector3int16 Min, Max;
|
|
|
|
|
|
2019-02-01 18:40:39 +00:00
|
|
|
|
public Region3int16(Vector3int16 min = null, Vector3int16 max = null)
|
2019-01-26 00:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
Min = min ?? new Vector3int16();
|
|
|
|
|
Max = max ?? new Vector3int16();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return string.Join("; ", Min, Max);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|