// Stuff to implement the line tool

#ifndef LINETOOL_H
#define LINETOOL_H

enum lineToolModifiers{
  ltmNone = 0,
  ltmBezier,
  ltmHalfBezierOne,
  ltmHalfBezierTwo,
  ltmJump
};

#endif
