mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 23:24:47 +00:00
15 lines
261 B
C#
15 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using OpenTK;
|
|
|
|
namespace Toolbox.Library
|
|
{
|
|
public class BoundingBox
|
|
{
|
|
public Vector3 Min;
|
|
public Vector3 Max;
|
|
}
|
|
}
|