Back to project page Hungry-Mouse.
The source code is released under:
MIT License
If you think the Android project Hungry-Mouse listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
//Name: Cheese.java //Purpose: the cheese reward with the coordinates /*from ww w . j a v a 2 s . c om*/ package com.hungry.mouse.main; public class Cheese extends Rewards { //constructor public Cheese(int centerX, int centerY) { setCenterX(centerX);//x axis coordinates setCenterY(centerY);//y axis coordinates } }