blob: b4ff699a613227fac40880dd266c6345c8d65c50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---@meta
---The command line arguments given to pragtical.
---@type table<integer, string>
ARGS = {}
---The current platform tuple used for native modules loading,
---for example: "x86_64-linux", "x86_64-darwin", "x86_64-windows", etc...
---@type string
ARCH = "Architecture-OperatingSystem"
---The current operating system.
---@type string | "Windows" | "Mac OS X" | "Linux" | "iOS" | "Android"
PLATFORM = "Operating System"
---The current text or ui scale.
---@type number
SCALE = 1.0
---Full path of pragtical executable.
---@type string
EXEFILE = "/path/to/pragtical"
---Path to the users home directory.
---@type string
HOME = "/path/to/user/dir"
---This is set to true if pragtical was compiled with luajit.
---@type boolean
LUAJIT = false
|