mirror of
https://github.com/projectPiki/pikmin2.git
synced 2025-02-11 00:57:01 +00:00
13 lines
322 B
C
13 lines
322 B
C
#ifndef _CARRYINFO_H
|
|
#define _CARRYINFO_H
|
|
|
|
struct CarryInfo {
|
|
void disappear();
|
|
void draw(struct Graphics&, struct CarryInfoParam&);
|
|
void drawNumber(Graphics&, float, float, int, struct Color4&, float);
|
|
void drawNumberPrim(Graphics&, float, float, int, Color4&, float);
|
|
void update(const CarryInfoParam&);
|
|
};
|
|
|
|
#endif
|