Home | History | Annotate | Download | only in monop

Lines Matching refs:sqp

149 	SQUARE *sqp;
151 sqp = &board[cur_p->loc];
152 printf("That puts you on %s\n", sqp->name);
153 switch (sqp->type) {
175 if (sqp->owner < 0) {
176 printf("That would cost $%d\n", sqp->cost);
178 buy(player, sqp);
179 cur_p->money -= sqp->cost;
184 else if (sqp->owner == player)
187 rent(sqp);