Back to project page ogame-android-app.
The source code is released under:
GNU General Public License
If you think the Android project ogame-android-app 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 2014 Alexander Wang/*from w w w . j a v a 2s .com*/ This file is part of Ogame on Android. Ogame on Android 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. Ogame on Android 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 Ogame on Android. If not, see <http://www.gnu.org/licenses/>. */ package com.wikaba.ogapp.agent; public class FleetAndResources { public static final String METAL = "metal"; public static final String CRYSTAL = "crystal"; public static final String DEUT = "deuterium"; public static final String LF = "Light Fighter"; public static final String HF = "Heavy Fighter"; public static final String CR = "Cruiser"; public static final String BS = "Battleship"; public static final String SC = "Small Cargo"; public static final String LC = "Large Cargo"; public static final String COLONY = "Colony Ship"; public static final String BC = "Battlecruiser"; public static final String BB = "Bomber"; public static final String DS = "Destroyer"; public static final String RIP = "Deathstar"; public static final String RC = "Recycler"; public static final String EP = "Espionage Probe"; public static final String SS = "Solar Satellite"; }