diff options
Diffstat (limited to 'examples/common.scm')
-rw-r--r-- | examples/common.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/examples/common.scm b/examples/common.scm index 541488a..65e02df 100644 --- a/examples/common.scm +++ b/examples/common.scm @@ -15,15 +15,10 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(use-modules (sly agenda) - (sly fps) - (sly game) - (sly input keyboard) - (sly repl) - (sly signal) - (sly window)) +(use-modules (sly) + (sly fps)) -(open-window) +(sly-init) (add-hook! key-press-hook (lambda (key unicode) (when (eq? key 'escape) |