pioneer/src/lua/LuaFileSystem.h

17 lines
388 B
C
Raw Normal View History

2020-12-31 07:32:16 -08:00
// Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
2012-09-15 17:59:15 -07:00
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
2012-09-12 04:38:30 -07:00
#ifndef _LUAFILESYSTEM_H
#define _LUAFILESYSTEM_H
namespace LuaFileSystem {
void Register();
2012-07-08 04:37:53 -07:00
enum Root { // <enum scope='LuaFileSystem' name=FileSystemRoot prefix=ROOT_ public>
2012-07-08 04:37:53 -07:00
ROOT_USER,
ROOT_DATA
};
} // namespace LuaFileSystem
#endif