mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
26 lines
382 B
Text
26 lines
382 B
Text
|
|
// dummy items representing certain weapons
|
|
class DukeChaingun : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "CHAINGUN";
|
|
}
|
|
}
|
|
|
|
class DukeSectorEffector : DukeActor
|
|
{
|
|
//This never gets ticked, the handler goes directly to the native implementations.
|
|
}
|
|
|
|
|
|
|
|
// placeholders for CON scripted actors where we need the class.
|
|
|
|
class DukeForceRipple : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "FORCERIPPLE";
|
|
}
|
|
}
|