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
/
CAK47.java
blob
31ecb7b8211f2b0579361fb152cac6bad3c65380
1
package
gui
.
module3d
.
weapons
;
2
3
public class
CAK47
extends
CWeapon
4
{
5
public
CAK47
()
6
{
7
super
(
50
,
80
,
"AK47"
,
NORMAL_WEAPON_TYPE
,
20
);
8
}
9
10
@Override
11
public int
WeaponType
()
12
{
13
return
NORMAL_WEAPON_TYPE
;
14
}
15
}