_xiaofang/xiaofang/Assets/Obi/Scripts/Common/DataStructures/BVH/IBounded.cs
杨号敬 bcc74f0465 add
2024-12-18 02:18:45 +08:00

11 lines
123 B
C#

using System;
using UnityEngine;
namespace Obi
{
public interface IBounded
{
Aabb GetBounds();
}
}