From aed2f0c80e4d4d022769b6d51526bde2d086b965 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Sat, 9 Jul 2022 23:40:40 +0000 Subject: [PATCH] Update Overview --- Overview.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Overview.md b/Overview.md index 95c9f38..beefa99 100644 --- a/Overview.md +++ b/Overview.md @@ -5,9 +5,9 @@ Singe uses an event-driven programming model. What this means is that Singe con The most basic Singe script that provides all the existing "callbacks" used by Singe looks like this: ```lua --- Singe Game Skeleton +-- Singe Game Skeleton. --- Load the Singe Framework +-- Load the Singe Framework. dofile("Singe/Framework.singe") -- Declare any global variables you need here. @@ -31,6 +31,7 @@ function onMouseMoved(x, y, xr, yr, which) end function onOverlayUpdate() + return(OVERLAY_UPDATED) -- Or OVERLAY_NOT_UPDATED if no drawing was done. end function onShutdown()