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

com.codingame.gameengine.module.entities.Group Maven / Gradle / Ivy

Go to download

Entity Manager module for the CodinGame engine toolkit. Simplify the management of shapes and drawings.

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy