From Daniel Sjölie - added support for multitexured flt files.

This commit is contained in:
Robert Osfield
2002-09-18 11:11:10 +00:00
parent ed43d97ed3
commit 4a54b7bdb1
16 changed files with 472 additions and 16 deletions

View File

@@ -0,0 +1,36 @@
// UVListRecord.cpp
#include "flt.h"
#include "Registry.h"
#include "UVListRecord.h"
using namespace flt;
////////////////////////////////////////////////////////////////////
//
// UVListRecord
//
////////////////////////////////////////////////////////////////////
RegisterRecordProxy<UVListRecord> g_UVListProxy;
UVListRecord::UVListRecord()
{
CERR << "UVListRecord created\n";
}
// virtual
UVListRecord::~UVListRecord()
{
}
// virtual
void UVListRecord::endian()
{
SUVList *pSUVList = (SUVList*)getData();
ENDIAN( pSUVList->layers );
}