Back to project page BoggleGame.
The source code is released under:
MIT License
If you think the Android project BoggleGame listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * GridPoint.java/* w w w .j av a2 s .c o m*/ * CS 454 * Group 2 */ package com.example.wordboggle; /* * stores a location on a grid */ public class GridPoint { //the X and Y positions public int x; public int y; /* * the default constructor */ GridPoint(){ x = -1; y = -1; } /* * the constructor which passes the X and Y positions */ GridPoint(int i, int j){ x = i; y = j; } }