mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
30 lines
710 B
C
30 lines
710 B
C
|
// Class for animated UPP icons shown on scoreboard, etc.
|
||
|
|
||
|
#ifndef SCOREBOARDICON_H
|
||
|
#define SCOREBOARDICON_H
|
||
|
|
||
|
#include "vgui.h"
|
||
|
#include "vgui_bitmaptga.h"
|
||
|
#include <vector>
|
||
|
|
||
|
class ScoreboardIcon
|
||
|
{
|
||
|
public:
|
||
|
ScoreboardIcon(const int icon_number, const int icon_color);
|
||
|
~ScoreboardIcon(void);
|
||
|
|
||
|
bool updateColor(const int icon_color, const float gamma_slope);
|
||
|
bool updateColor(const float gamma_slope);
|
||
|
|
||
|
int getIconNumber(void) const;
|
||
|
int getIconColor(void) const;
|
||
|
vgui::Color getColor(void) const;
|
||
|
vgui::BitmapTGA* getImage(const int frame_number) const;
|
||
|
|
||
|
private:
|
||
|
int icon_number, icon_color;
|
||
|
vgui::Color base_color, color;
|
||
|
std::vector<vgui::BitmapTGA*> images;
|
||
|
};
|
||
|
|
||
|
#endif
|