mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 17:46:38 -05:00
29 lines
461 B
C++
29 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)
|
||
|
{
|
||
|
}
|