All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.extension.envsupport.environment.ISpaceController Maven / Gradle / Ivy

Go to download

The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.

There is a newer version: 3.0.117
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy