com.codingame.gameengine.module.entities.Mask 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;
/**
*
* Entities that implement this interface can be used as a Mask
by other entities.
*
* Masks
can only be assigned to one entity at a time.
*
*/
public interface Mask {
/**
* Returns a unique Entity
identifier for this Mask
.
*
* @return A unique identifier.
*/
public int getId();
}