mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 23:30:27 +00:00
24 lines
337 B
C++
24 lines
337 B
C++
#ifndef _MOUTHSLOTS_H
|
|
#define _MOUTHSLOTS_H
|
|
|
|
#include "types.h"
|
|
|
|
struct MouthCollPart;
|
|
|
|
namespace SysShape {
|
|
struct Model;
|
|
} // namespace SysShape
|
|
|
|
struct MouthSlots {
|
|
MouthSlots();
|
|
|
|
void alloc(int);
|
|
void setup(int, SysShape::Model*, char*);
|
|
void update();
|
|
|
|
int m_count; // _00
|
|
MouthCollPart* m_slots; // _04
|
|
};
|
|
|
|
#endif
|