1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-08 11:52:57 +01:00
openrw/rwengine/include/objects/GenericPickup.hpp

15 lines
281 B
C++
Raw Normal View History

#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;
};