You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
1 year ago
|
#pragma once
|
||
|
#include "olcPixelGameEngine.h"
|
||
|
#include "olcPGEX_TransformedView.h"
|
||
|
#include "Constant.h"
|
||
|
|
||
|
struct DebuffIcon{
|
||
|
Renderable*icon;
|
||
|
Renderable*redXIcon;
|
||
|
vf2d pos;
|
||
|
float lifetime=CONSTANT::DEBUFFICON_LIFETIME;
|
||
|
void Update(float fElapsedTime);
|
||
|
void Draw(TileTransformedView&game);
|
||
|
};
|