14 lines
212 B
C#
14 lines
212 B
C#
using System.Numerics;
|
|
|
|
namespace Quadtree
|
|
{
|
|
public interface IWorldObject
|
|
{
|
|
Vector2 Position { get; }
|
|
|
|
float BoundingRadius { get; }
|
|
|
|
BoundingBox2 BoundingBox { get; }
|
|
}
|
|
}
|