mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
17 lines
394 B
C++
17 lines
394 B
C++
|
|
#pragma once
|
|
|
|
#include "WeenieObject.h"
|
|
|
|
class CAugmentationDeviceWeenie : public CWeenieObject
|
|
{
|
|
public:
|
|
CAugmentationDeviceWeenie();
|
|
virtual ~CAugmentationDeviceWeenie() override;
|
|
|
|
virtual CAugmentationDeviceWeenie *AsAugmentationDevice() override { return this; }
|
|
|
|
virtual int Use(CPlayerWeenie *pOther) override;
|
|
virtual int UseEx(CPlayerWeenie *pOther, bool bConfirmed = false);
|
|
};
|
|
|