1
0
mirror of synced 2025-01-10 13:21:51 +01:00

16 lines
261 B
C#
Raw Normal View History

2019-06-06 17:57:55 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenTK;
namespace Toolbox.Library
2019-06-06 17:57:55 -04:00
{
public class BoundingBox
{
public Vector3 Min;
public Vector3 Max;
}
}