| FaceChooserClientEvent.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 common.clientevent;
import common.Face;
public class FaceChooserClientEvent extends ClientEvent {
private static final long serialVersionUID = 3256721775588225328L;
private final Face face;
public FaceChooserClientEvent(Face face) {
super(ClientEventType.FACE_CHOOSER);
this.face = face;
}
public Face getFace() {
return face;
}
}