13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class CScriptArray;
|
|
|
|
namespace Deer {
|
|
namespace Scripting {
|
|
CScriptArray* dividePath_angelscript(std::string&);
|
|
std::string getParentPath(std::string&);
|
|
std::string getParentPathName(std::string&);
|
|
std::string getPathName(std::string&);
|
|
} // namespace Scripting
|
|
} // namespace Deer
|