tiny_link/src/components/hurtable.h

22 lines
369 B
C
Raw Normal View History

2021-01-04 07:11:49 +08:00
#pragma once
#include "../world.h"
#include "collider.h"
#include <blah.h>
#include <functional>
using namespace Blah;
namespace TL
{
class Hurtable : public Component
{
public:
2021-01-04 09:03:48 +08:00
float stun_timer = 0;
float flicker_timer = 0;
2021-01-04 07:11:49 +08:00
Collider* collider = nullptr;
uint32_t hurt_by = 0;
std::function<void(Hurtable* self)> on_hurt;
void update() override;
};
}