Changeset a10d422 in lost-perception for main/MapObject.java
- Timestamp:
- Jun 4, 2020, 4:15:10 PM (4 years ago)
- Branches:
- master
- Children:
- 57674f3
- Parents:
- 5d846bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/MapObject.java
r5d846bb ra10d422 5 5 import java.awt.Point; 6 6 7 public class MapObject implements Comparable<MapObject> 8 { 7 public class MapObject implements Comparable<MapObject> { 9 8 public Point loc; 10 9 public int z; … … 15 14 this.loc = new Point(x, y); 16 15 this.z = z; 17 final Bound bound = null; 18 this.selectionBound = bound; 19 this.bound = bound; 16 this.bound = null; 17 this.selectionBound = null; 20 18 } 21 19
Note:
See TracChangeset
for help on using the changeset viewer.