mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
36 lines
No EOL
546 B
C++
36 lines
No EOL
546 B
C++
/**
|
|
* @file cache.h
|
|
* @brief NEX Cache Mangement.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "string.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace nex
|
|
{
|
|
class BasicCache;
|
|
|
|
class CacheManager
|
|
{
|
|
public:
|
|
CacheManager();
|
|
~CacheManager();
|
|
|
|
nn::nex::BasicCache* GetCache(nn::nex::String const &);
|
|
};
|
|
|
|
class BasicCache
|
|
{
|
|
public:
|
|
BasicCache(nn::nex::String const &);
|
|
|
|
virtual ~BasicCache();
|
|
|
|
u64 _8;
|
|
u8 _10;
|
|
};
|
|
};
|
|
}; |