mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-29 14:43:05 +00:00
36 lines
546 B
C
36 lines
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;
|
||
|
};
|
||
|
};
|
||
|
};
|