mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
25 lines
284 B
Text
25 lines
284 B
Text
class DukeBatteryAmmo : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "BATTERYAMMO";
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
commonItemSetup();
|
|
}
|
|
}
|
|
|
|
class RedneckRifleAmmo : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "BATTERYAMMO";
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
commonItemSetup((0.234375, 0.234375));
|
|
}
|
|
}
|