#ifndef _LINE_H_
#define _LINE_H_

enum{LTYPE_UNPASSIBLE};

class Line {
  public:
    Line();
    Line(int type, int x, int y);
    int getType();
    int getX();
    int getY();
    void setType(int type);
    void setX(int x);
    void setY(int y);

  private:
    int xcoord;
    int ycoord;
    int linetype;
};

#endif