Created
February 22, 2014 08:12
-
-
Save henryyang42/9150375 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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