Files
QuartZ-dump/GlobalShared/OcTree/IContainer.cs
2024-12-29 21:15:58 +01:00

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; }
}
}