Changeset a10d422 in lost-perception for main/MapObject.java


Ignore:
Timestamp:
Jun 4, 2020, 4:15:10 PM (4 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
master
Children:
57674f3
Parents:
5d846bb
Message:

Create a working makefile target for MapEditor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/MapObject.java

    r5d846bb ra10d422  
    55import java.awt.Point;
    66
    7 public class MapObject implements Comparable<MapObject>
    8 {
     7public class MapObject implements Comparable<MapObject> {
    98    public Point loc;
    109    public int z;
     
    1514        this.loc = new Point(x, y);
    1615        this.z = z;
    17         final Bound bound = null;
    18         this.selectionBound = bound;
    19         this.bound = bound;
     16        this.bound = null;
     17        this.selectionBound = null;
    2018    }
    2119   
Note: See TracChangeset for help on using the changeset viewer.