summaryrefslogtreecommitdiff
path: root/meta/3rd/lovr/library/lovr.lovr.lua
blob: 6367c768120eb6dee79d1dc7d4df10988e470c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---@meta

---
---`lovr` is the single global table that is exposed to every LÖVR app. It contains a set of **modules** and a set of **callbacks**.
---
---@class lovr.lovr
lovr.lovr = {}

---
---Get the current major, minor, and patch version of LÖVR.
---
---@return number major # The major version.
---@return number minor # The minor version.
---@return number patch # The patch number.
function lovr.lovr.getVersion() end