repo.or.cz
/
FYD.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2013 -- FYD file system content
[FYD.git]
/
src
/
gui
/
module3d
/
weapons
/
CRocketLauncher.java
blob
f809a9344bc8ca6bbbfadf7ed82b89faef4a41f9
1
package
gui
.
module3d
.
weapons
;
2
3
public class
CRocketLauncher
extends
CWeapon
4
{
5
public
CRocketLauncher
()
6
{
7
super
(
4
,
1000
,
"Rocket Launcher"
,
ROCKET_WEAPON_TYPE
,
50
);
8
}
9
10
@Override
11
public int
WeaponType
()
12
{
13
return
ROCKET_WEAPON_TYPE
;
14
}
15
}