~ubuntu-branches/ubuntu/maverick/asc/maverick

« back to all changes in this revision

Viewing changes to source/tools/java/Weapons.java

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Eddy Petrișor, Gonéri Le Bouder, Cyril Brulebois, Barry deFreese
  • Date: 2008-01-08 19:54:18 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080108195418-n19fc4eobhhqxcy5
Tags: 2.0.1.0-1
[ Eddy Petrișor ]
* fixed Homepage semifield

[ Gonéri Le Bouder ]
* add a watchfile
* move homepage from the description to the new Homepage field

[ Cyril Brulebois ]
* Added Vcs-Svn and Vcs-Browser fields in the control file.

[ Barry deFreese ]
* Fix make-clean lintian warning
* New upstream release
* Bump debhelper build-dep to match compat
* Add desktop file
* Update watch file for new upstream naming
* Remove nostrip check from rules
* Bump Standards Version to 3.7.3
* Add myself to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//     $Id: Weapons.java,v 1.3 2000/11/07 16:19:41 schelli Exp $
2
 
//
3
 
//     $Log: Weapons.java,v $
4
 
//     Revision 1.3  2000/11/07 16:19:41  schelli
5
 
//     Minor Memory-Functions & Problems changed
6
 
//     Picture Support partly enabled
7
 
//     New Funktion partly implemented
8
 
//     Buildings partly implemented
9
 
//
10
 
//     Revision 1.2  2000/10/13 13:15:48  schelli
11
 
//     *** empty log message ***
12
 
//
13
 
 
14
 
/*
15
 
 * tWeapons.java
16
 
 *
17
 
 * Created on 22. November 1999, 14:34
18
 
  
19
 
    This file is part of Advanced Strategic Command; http://www.asc-hq.de
20
 
    Copyright (C) 1994-2000  Martin Bickel  and  Marc Schellenberger
21
 
 
22
 
    This program is free software; you can redistribute it and/or modify
23
 
    it under the terms of the GNU General Public License as published by
24
 
    the Free Software Foundation; either version 2 of the License, or
25
 
    (at your option) any later version.
26
 
 
27
 
    This program is distributed in the hope that it will be useful,
28
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 
    GNU General Public License for more details.
31
 
 
32
 
    You should have received a copy of the GNU General Public License
33
 
    along with this program; see the file COPYING. If not, write to the 
34
 
    Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
35
 
    Boston, MA  02111-1307  USA
36
 
*/
37
 
 
38
 
public class Weapons extends Object {
39
 
  int          weaponcount; //c
40
 
  Weapon      weapon[]; 
41
 
 
42
 
  /** Creates new tWeapons */
43
 
  public Weapons() {
44
 
    weaponcount = 0;
45
 
    weapon = new Weapon[8];  
46
 
  }
47
 
  
48
 
}
 
 
b'\\ No newline at end of file'