Blame |
Last modification |
View Log
| RSS feed
package com.gebauz.burutaru.game.entities;
/** Interface for objects that can be enclosed in an axis-aligned bounding box. */
public interface IAABBBObject
{
// Constants========================================================================================
// Embedded Types===================================================================================
// Fields===========================================================================================
// Methods==========================================================================================
// Getters/Setters==================================================================================
public float getLeft();
public float getTop();
public float getRight();
public float getBottom();
}