App
BrushLikeToolActionData.java
Go to the documentation of this file.
1 package mhr.appcore.tools.actiondata;
2 
6 public class BrushLikeToolActionData implements ToolActionData {
7 
11  public static enum Action {
12  DRAW_BEGIN, DRAW_TO, DRAW_END;
13  }
14 
15  public Action action;
16  public int eventAtX;
17  public int eventAtY;
18 
26  this.action = action;
27  this.eventAtX = eventAtX;
28  this.eventAtY = eventAtY;
29  }
30 
31 }