_xiaofang/xiaofang/Assets/Obi/Scripts/Common/DataStructures/BVH/IBounded.cs

11 lines
123 B
C#
Raw Normal View History

2024-12-18 02:18:45 +08:00
using System;
using UnityEngine;
namespace Obi
{
public interface IBounded
{
Aabb GetBounds();
}
}