mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-06 03:35:04 +00:00
20 lines
No EOL
227 B
C++
20 lines
No EOL
227 B
C++
/**
|
|
* @file Heap.h
|
|
* @brief VFX heap implementation.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace vfx
|
|
{
|
|
class Heap
|
|
{
|
|
public:
|
|
virtual ~Heap();
|
|
};
|
|
};
|
|
}; |