/*
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;

public class CommandClientEvent extends ClientEvent {

    private static final long serialVersionUID = 3257844376909396023L;
    
    private final String command;
    
    public CommandClientEvent(String command) {
        super(ClientEventType.COMMAND);
        this.command = command;
    }

    public String getCommand() {
        return command;
    }

}