rpgxef/code/game/entities/Light.h
2018-07-18 20:13:45 +02:00

17 lines
436 B
C++

#pragma once
#include "../Entity.h"
namespace game::entities
{
class Light : public Entity
{
public:
Light(GameSharedEntity* sharedEntity, Entity* parent = nullptr);
void think() override {}
void touch(const Entity&, trace_t*) override {}
void use(const Entity&, const Entity&) override {}
void pain(const Entity&, int32_t) override {}
void die(const Entity&, const Entity&, int, int) override {}
};
}