summaryrefslogtreecommitdiff
path: root/Runtime/Scripting/ScriptLanguagePortUtility.cpp
blob: 7f5364087b4520bce2a1d4a9d89e711b818678a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "UnityPrefix.h"
#if UNITY_FLASH

#include "ScriptLanguagePortUtility.h"

bool IsFileCreated(const std::string& path)
{
	return Ext_FileContainer_IsFileCreatedAt(path.c_str());
}

#endif