mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
935ebe6910
* WIP * Match * Changes * Fix format * Style fixes * Update naming.yml * Match to ~85%
28 lines
461 B
C++
28 lines
461 B
C++
#include "viewlodlist.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
DECOMP_SIZE_ASSERT(ViewLODListManager, 0x14);
|
|
|
|
// FUNCTION: LEGO1 0x100a6fd0
|
|
ViewLODListManager::ViewLODListManager()
|
|
{
|
|
}
|
|
|
|
// STUB: LEGO1 0x100a7130
|
|
ViewLODListManager::~ViewLODListManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x100a72c0
|
|
ViewLODList* ViewLODListManager::Create(const ROIName&, int lodCount)
|
|
{
|
|
// TODO
|
|
return NULL;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100a7680
|
|
void ViewLODListManager::Destroy(ViewLODList* lodList)
|
|
{
|
|
}
|