mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-02 01:59:56 -04:00
17 lines
231 B
C++
17 lines
231 B
C++
#ifndef JASBANK_H
|
|
#define JASBANK_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRHeap;
|
|
|
|
namespace JASystem {
|
|
namespace TBank {
|
|
JKRHeap* getCurrentHeap();
|
|
|
|
extern JKRHeap* sCurrentHeap;
|
|
};
|
|
}
|
|
|
|
#endif /* JASBANK_H */
|