mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 12:25:52 -04:00
21 lines
492 B
C++
21 lines
492 B
C++
/*
|
|
* Game Develop Core
|
|
* Copyright 2008-2014 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the GNU Lesser General Public License.
|
|
*/
|
|
|
|
#include "ResourcesAbsolutePathChecker.h"
|
|
#include "GDCore/IDE/AbstractFileSystem.h"
|
|
#include <string>
|
|
|
|
namespace gd
|
|
{
|
|
|
|
void ResourcesAbsolutePathChecker::ExposeFile(std::string & resourceFilename)
|
|
{
|
|
if ( fs.IsAbsolute(resourceFilename) )
|
|
hasAbsoluteFilenames = true;
|
|
}
|
|
|
|
}
|