mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-23 06:55:52 +00:00
16 lines
166 B
C++
16 lines
166 B
C++
#ifndef _CAIFUNCMAP_HPP
|
|
#define _CAIFUNCMAP_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CAiFuncMap {
|
|
public:
|
|
CAiFuncMap();
|
|
~CAiFuncMap();
|
|
|
|
private:
|
|
u8 pad[0x20];
|
|
};
|
|
|
|
#endif
|