mirror of https://github.com/PrimeDecomp/prime.git
15 lines
150 B
C++
15 lines
150 B
C++
|
#ifndef _CAIFUNCMAP_HPP
|
||
|
#define _CAIFUNCMAP_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CAiFuncMap {
|
||
|
public:
|
||
|
~CAiFuncMap();
|
||
|
|
||
|
private:
|
||
|
u8 pad[0x20];
|
||
|
};
|
||
|
|
||
|
#endif
|