16 lines
242 B
Java
16 lines
242 B
Java
|
package nautilus.game.arcade.kit.perks;
|
||
|
|
||
|
import nautilus.game.arcade.kit.SmashPerk;
|
||
|
|
||
|
public class PerkZombieNightDead extends SmashPerk
|
||
|
{
|
||
|
|
||
|
public PerkZombieNightDead()
|
||
|
{
|
||
|
super("Night of the Dead", new String[]
|
||
|
{
|
||
|
}, false);
|
||
|
}
|
||
|
|
||
|
}
|