1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 19:32:49 +01:00
openrw/rwengine/include/objects/GenericPickup.hpp
2015-01-27 02:38:08 +00:00

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