pikmin2/include/CarryInfoList.h
2021-10-14 00:59:32 +01:00

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