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

com.codingame.gameengine.module.entities.Mask 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;

/**
 * 

* 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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy