Skip to content
Permalink
3ecb1a4749
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (17 sloc) 554 Bytes
package model;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Handler implements ActionListener {
private int rent, price, locationOnBoard;
private Tile tile;
public Handler(int price, int rent, Tile tile, int locationOnBoard,
GameBoard board) {
this.price = price;
this.rent = rent;
this.tile = tile;
this.locationOnBoard = locationOnBoard;
}
public void actionPerformed(ActionEvent event) {
// refer to getLandedOn? Or one of the decision/card windows? How do i do this i am tired
}
}