com.codingame.gameengine.module.entities.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of module-entities Show documentation
Show all versions of module-entities Show documentation
Entity Manager module for the CodinGame engine toolkit. Simplify the management of shapes and drawings.
package com.codingame.gameengine.module.entities;
/**
* A Group is an Entity which acts as a container for other entities.
*/
public class Group extends ContainerBasedEntity {
Group() {
super();
}
@Override
Entity.Type getType() {
return Entity.Type.GROUP;
}
}