summaryrefslogtreecommitdiff
path: root/include/JSystem/JAudio/JASBank.h
blob: 4a447c91454dd966b7a8e0d83721958c41d47fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef JASBANK_H
#define JASBANK_H

#include "dolphin/types.h"

class JKRHeap;

namespace JASystem {
    class TInst;
    class TWaveBank;
    class TBank {
    public:
        TBank() {
            field_0x4 = 0;
        }
        virtual ~TBank() {}
        virtual TInst* getInst(int) const = 0;
        virtual u32 getType() const = 0;

        static JKRHeap* getCurrentHeap();

        static JKRHeap* sCurrentHeap;

        /* 0x04 */ TWaveBank* field_0x4;
    };
}

#endif /* JASBANK_H */