Back to project page WoT-Tank-Quiz.
The source code is released under:
GNU General Public License
If you think the Android project WoT-Tank-Quiz listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2012 Jonas Schrmann //from ww w .j ava 2s . c o m My Website: mazechazer.jimdo.com This file is part of the WoT Tank Quiz. The WoT Tank Quiz is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The WoT Tank Quiz is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the WoT Tank Quiz. If not, see <http://www.gnu.org/licenses/>. */ package mazechazer.android.wottankquiz; public class Tank { String name; Country country; TankClass tankClass; int resID; Tank() { } Tank(String nameArg, int resIDArg, Country countryArg, TankClass tankClassArg){ name = nameArg; resID = resIDArg; country = countryArg; tankClass = tankClassArg; } }