mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 07:10:42 +00:00
14 lines
183 B
C
14 lines
183 B
C
#ifndef _CARRYINFOLIST_H
|
|
#define _CARRYINFOLIST_H
|
|
|
|
struct CarryInfoList {
|
|
~CarryInfoList();
|
|
|
|
void draw(struct Graphics&);
|
|
void init();
|
|
void isFinish();
|
|
void update();
|
|
};
|
|
|
|
#endif
|