mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
4075ab1b92
zawiera drobny błąd wyświetlania cienia (walnięta funkcja do flipowania)
12 lines
302 B
C++
12 lines
302 B
C++
#include "stdafx.h"
|
|
#include "CSemiLodHandler.h"
|
|
void CSemiLodHandler::openLod(std::string path)
|
|
{
|
|
ourName = path;
|
|
};
|
|
CSemiDefHandler * CSemiLodHandler::giveDef(std::string name, int dist)
|
|
{
|
|
CSemiDefHandler * ret = new CSemiDefHandler();
|
|
ret->openDef(name, ourName, dist);
|
|
return ret;
|
|
}; |