📜
Dead Sea Scrolls
  • Getting Started
    • Dead Sea Scrolls (DSS)
    • Installation
  • Tutorials
    • Making a basic menu
    • Adding changelogs
    • Adding menu palettes
    • Gotchas
  • Documentation
    • Global Methods
    • Objects
      • Directory
      • DirectoryKey
      • Page
  • Meta
    • Missing Definitions
Powered by GitBook
On this page
  1. Documentation
  2. Objects

Directory

A Directory holds your mod's menu.

A Directory is unique to other objects in that it doesn't have any properties or methods. Instead, it is a dictionary where the index is an arbitrary name and the value is a Page.

local directory = {
    main = {
        -- code
    },
    settings = {
        -- more code
    },
}
PreviousObjectsNextDirectoryKey

Last updated 2 years ago