package com.kartoflane.superluminal2.components.interfaces;
/**
* A simple interface to give objects a "face name" - a string that the user can
* assign to each instance to be able to easily identify them.
*
* @author kartoFlane
*
*/
public interface Alias {
public String getAlias();
public void setAlias(String alias);
}