All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ggp.base.server.event.ServerCompletedMatchEvent Maven / Gradle / Ivy

The newest version!
package org.ggp.base.server.event;

import java.io.Serializable;
import java.util.List;

import org.ggp.base.util.observer.Event;


@SuppressWarnings("serial")
public final class ServerCompletedMatchEvent extends Event implements Serializable
{

    private final List goals;

    public ServerCompletedMatchEvent(List goals)
    {
        this.goals = goals;
    }

    public List getGoals()
    {
        return goals;
    }

    @Override
    public String toString() {
        return "Server completed match event: " + goals;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy