mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
16 lines
393 B
C++
16 lines
393 B
C++
|
|
#pragma once
|
|
|
|
#include "WeenieObject.h"
|
|
|
|
class CAugmentationDeviceWeenie : public CWeenieObject
|
|
{
|
|
public:
|
|
CAugmentationDeviceWeenie();
|
|
virtual ~CAugmentationDeviceWeenie() override;
|
|
|
|
virtual std::shared_ptr<CAugmentationDeviceWeenie> AsAugmentationDevice() override { return GetPointer<CAugmentationDeviceWeenie>(); }
|
|
|
|
virtual int Use(std::shared_ptr<CPlayerWeenie> pOther) override;
|
|
};
|
|
|