From 37bdd09781e7f607506afa6ca3e14f57a78fb61c Mon Sep 17 00:00:00 2001 From: David Gomes Date: Thu, 14 Jun 2012 00:06:39 +0200 Subject: [PATCH] Some more explanation. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 17c097f..1bcc1d7 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ note: still in development - everything can change * lick.clearFlag = false -- overrides the clear() function in love.run #Example +Here's a small example: + ```Lua lick = require "lick" lick.reset = true -- reload the love.load everytime you save @@ -26,4 +28,6 @@ end function love.draw(dt) love.graphics.circle("fill", 400+100*math.sin(circle.x), 300, 16,16) -end \ No newline at end of file +end + +Note, though, that you need to have lick.lua on the same directory as your main.lua. \ No newline at end of file