| FaceChooserGameEvent.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.gameevent;
import common.Face;
import common.ui.GameClient;
/**
* Causes the face chooser to be displayed.
*
* @author green
*/
public class FaceChooserGameEvent extends GameEvent {
private static final long serialVersionUID = 3258130249949459513L;
private final Face face;
public FaceChooserGameEvent(Face face) {
this.face = face;
}
public void run() {
GameClient.launchFaceChooser(face);
}
}