mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-03 23:21:21 +00:00
4759f9a399
- added GetParentClass builtin to compiler.
14 lines
263 B
C++
14 lines
263 B
C++
#pragma once
|
|
#include "a_pickups.h"
|
|
|
|
class AAmmo : public AInventory
|
|
{
|
|
DECLARE_CLASS (AAmmo, AInventory)
|
|
public:
|
|
|
|
virtual void Serialize(FSerializer &arc) override;
|
|
PClassActor *GetParentAmmo () const;
|
|
|
|
int BackpackAmount, BackpackMaxAmount, DropAmount;
|
|
};
|
|
|