mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
7b034b5eab
The generic code is not ready yet so it has to be done manually.
26 lines
294 B
Text
26 lines
294 B
Text
class DukeBoss5 : DukeBoss1
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS5";
|
|
}
|
|
}
|
|
|
|
|
|
class DukeBoss5Stayput : DukeBoss5
|
|
{
|
|
default
|
|
{
|
|
pic "BOSS5STAYPUT";
|
|
}
|
|
|
|
override void initialize()
|
|
{
|
|
super.initialize();
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|