11 lines
123 B
C#
11 lines
123 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Obi
|
|
{
|
|
public interface IBounded
|
|
{
|
|
Aabb GetBounds();
|
|
}
|
|
}
|