Files
GDevelop/Extensions/Function/FunctionTools.cpp
T
Florian Rival 64e6860718 Version bump.
Updated copyrights.
2015-01-22 21:22:01 +01:00

24 lines
434 B
C++

/**
GDevelop - Function Extension
Copyright (c) 2008-2015 Florian Rival (Florian.Rival@gmail.com)
This project is released under the MIT License.
*/
#include "FunctionTools.h"
#include "GDCpp/profile.h"
namespace GDpriv
{
namespace FunctionTools
{
std::string GD_EXTENSION_API GetSafelyStringFromVector(std::vector<std::string> & list, unsigned int index )
{
if (index < list.size()) return list[index];
return "";
}
}
}