mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
17 lines
332 B
C++
17 lines
332 B
C++
#include "nestedcollection.hpp"
|
|
|
|
CSMWorld::NestedCollection::NestedCollection()
|
|
{}
|
|
|
|
CSMWorld::NestedCollection::~NestedCollection()
|
|
{}
|
|
|
|
int CSMWorld::NestedCollection::getNestedRowsCount(int row, int column) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int CSMWorld::NestedCollection::getNestedColumnsCount(int row, int column) const
|
|
{
|
|
return 0;
|
|
}
|