raze/wadsrc/static/zscript/games/duke/actors/_placeholders.zs
Christoph Oelckers f9e5f2c137 - final clenaup on animatesprites_d.cpp.
Only the player actor is left, which is also the messiest part...
2023-04-07 12:22:44 +02:00

44 lines
557 B
Text

// dummy items representing certain weapons
class DukeShotgunShot : DukeActor
{
default
{
pic "SHOTGUN";
}
}
class RedneckShotgunShot : DukeShotgunShot
{
}
class DukeChaingunShot : DukeActor
{
default
{
pic "CHAINGUN";
}
}
class RedneckChaingunShot : DukeChaingunShot
{
}
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";
}
}