mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-12 10:18:16 +00:00
16 lines
224 B
C++
Executable file
16 lines
224 B
C++
Executable file
#pragma once
|
|
|
|
#include "al/hio/HioNode.h"
|
|
|
|
namespace al {
|
|
class ActorResource;
|
|
|
|
class ModelKeeper : public al::HioNode {
|
|
public:
|
|
ModelKeeper();
|
|
|
|
virtual ~ModelKeeper();
|
|
|
|
void initResource()
|
|
};
|
|
}; // namespace al
|