mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
17 lines
233 B
C++
Executable file
17 lines
233 B
C++
Executable file
#pragma once
|
|
|
|
#include "Library/HostIO/HioNode.h"
|
|
|
|
namespace al {
|
|
class ActorResource;
|
|
|
|
class ModelKeeper : public al::HioNode {
|
|
public:
|
|
ModelKeeper();
|
|
|
|
virtual ~ModelKeeper();
|
|
|
|
void initResource()
|
|
};
|
|
}; // namespace al
|