Package com.jcloisterzone.event

Source Code of com.jcloisterzone.event.BridgeDeployedEvent

package com.jcloisterzone.event;

import com.jcloisterzone.Player;
import com.jcloisterzone.board.Location;
import com.jcloisterzone.board.Position;
import com.jcloisterzone.board.pointer.FeaturePointer;

public class BridgeDeployedEvent extends FeatureEvent {

    public BridgeDeployedEvent(Player triggeringPlayer, Position position, Location location) {
        super(triggeringPlayer, new FeaturePointer(position, location));
    }

}
TOP

Related Classes of com.jcloisterzone.event.BridgeDeployedEvent

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.