SuperMarioOdysseyOnline/include/nn/vfx/Heap.h

20 lines
227 B
C++

/**
* @file Heap.h
* @brief VFX heap implementation.
*/
#pragma once
#include "types.h"
namespace nn
{
namespace vfx
{
class Heap
{
public:
virtual ~Heap();
};
};
};