Skip to content

Instantly share code, notes, and snippets.

@henryyang42
Created February 22, 2014 08:12
Show Gist options
  • Save henryyang42/9150375 to your computer and use it in GitHub Desktop.
Save henryyang42/9150375 to your computer and use it in GitHub Desktop.
package nthu.cs.henryyang42.canvas;
public class CanvasPoint {
public float x;
public float y;
public int action;
public int color;
public CanvasPoint(float x,float y,int a, int color){
this.x = x;
this.y = y;
this.action = a;
this.color = color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment