jadex.extension.envsupport.environment.ISpaceController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-extension-envsupport Show documentation
Show all versions of jadex-kernel-extension-envsupport Show documentation
The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.
package jadex.extension.envsupport.environment;
import java.util.Collection;
import jadex.extension.envsupport.math.IVector2;
/**
*Importand Interfance
* connects the Abstract Space with the 3d MonkeyWorld
*
*
* @author Philip Willuweit [email protected]
*
*/
public interface ISpaceController
{
public Collection getSpaceObjectsByGridPosition(IVector2 position, Object type);
public Object getProperty(String name);
public void setProperty(String name, Object value);
public ISpaceObject getSpaceObject(Object id);
}