mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 19:32:49 +01:00
15 lines
281 B
C++
15 lines
281 B
C++
#pragma once
|
|
|
|
#include <objects/PickupObject.hpp>
|
|
|
|
class GenericPickup : public PickupObject
|
|
{
|
|
public:
|
|
|
|
GenericPickup(GameWorld* world, const glm::vec3& position, int modelID, int type);
|
|
|
|
virtual bool onCharacterTouch(CharacterObject* character);
|
|
|
|
private:
|
|
int type;
|
|
}; |