Skip to main content

rom.paths.lua

---@meta paths

-- Table containing helpers for retrieving project related IO file/folder paths.
---@class (exact) rom.paths

-- Used for data that must persist between sessions and that can be manipulated by the user.
---@return string # Returns the config folder path
function paths.config() end

-- Used for data that must persist between sessions but not be manipulated by the user.
---@return string # Returns the plugins_data folder path
function paths.plugins_data() end

-- Location of .lua, README, manifest.json files.
---@return string # Returns the plugins folder path
function paths.plugins() end

---@return string # Returns the GameFolder/Content folder path
function paths.Content() end

---@return string # Returns the GameFolder/Ship folder path
function paths.Ship() end