mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-12-17 10:36:07 -05:00
Initial automated refactoring
This commit is contained in:
21
src/com/uncc/gameday/parking/ParkingLot.java
Normal file
21
src/com/uncc/gameday/parking/ParkingLot.java
Normal file
@ -0,0 +1,21 @@
|
||||
package com.uncc.gameday.parking;
|
||||
|
||||
public class ParkingLot {
|
||||
|
||||
private ParkingChoices location;
|
||||
private int filled_pct;
|
||||
|
||||
public int getFilledPct() {
|
||||
return filled_pct;
|
||||
}
|
||||
public void setFilledPct(int filled_pct) {
|
||||
this.filled_pct = filled_pct;
|
||||
}
|
||||
public ParkingChoices getLocation() {
|
||||
return location;
|
||||
}
|
||||
public void setLocation(ParkingChoices location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user