diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-01-20 21:07:59 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-01-20 21:07:59 -0800 |
commit | a28e57205d0263c8edab19ecdb4b5069e912c802 (patch) | |
tree | 1e9dc48d1bb469d13d5b0a34190e8a797fb63d1b | |
parent | 674042d4c75fcc11785e4c6cb1e317fe18d254b2 (diff) | |
download | text.love-a28e57205d0263c8edab19ecdb4b5069e912c802.tar.gz |
link to default love.run for comparison
-rw-r--r-- | app.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app.lua b/app.lua index e717220..d50654a 100644 --- a/app.lua +++ b/app.lua @@ -1,7 +1,7 @@ -- love.run: main entrypoint function for LÖVE -- --- Most apps can just use the default, but we need to override it to --- install a test harness. +-- Most apps can just use the default shown in https://love2d.org/wiki/love.run, +-- but we need to override it to install a test harness. -- -- A test harness needs to check what the 'real' code did. -- To do this it needs to hook into primitive operations performed by code. |