| Colors.java |
/*
Copyright (C) 2005 David Green <green@couchpotato.net>
All Rights Reserved.
This file is part of Aelfengard.
Aelfengard is proprietary software. You may not redistribute it without
prior written permission from the copyright holder.
*/
package server;
public enum Colors {
ROOM_NAME("@103"),
NEW_MAIL("@50F");
private final String colorCode;
private Colors(String colorCode) {
this.colorCode = colorCode;
}
public String getColorCode() {
return colorCode;
}
}