summaryrefslogtreecommitdiffhomepage
path: root/Flash.h
blob: 58cd547fe1d849083ccefe6a01517676fcb935db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <raylib.h>


struct Flash
{
    Flash();
    void update(float dt);
    void draw();
    void start();
    Color m_color;
    float m_duration;
    float m_flash;
};