12 lines
244 B
C#
12 lines
244 B
C#
namespace Global.Shared.OcTree
|
|
{
|
|
public interface IContainer
|
|
{
|
|
float X { get; }
|
|
float Y { get; }
|
|
float Z { get; }
|
|
float Width { get; }
|
|
float Height { get; }
|
|
float Depth { get; }
|
|
}
|
|
} |