From 7bd387d35baea9f6861c81f4286f68999849ea63 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 25 Feb 2021 23:57:06 +0100 Subject: Move from (chickadee render ...) to (chickadee graphics ...). The only notable changes are listed below: * engine/node-2d.scm (draw): Use new API from (chickadee graphics path). * scenes/game.scm (draw): Same. --- characters/lorenzo.scm | 6 +++--- characters/reaper.scm | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'characters') diff --git a/characters/lorenzo.scm b/characters/lorenzo.scm index 8c8971f..7615b36 100644 --- a/characters/lorenzo.scm +++ b/characters/lorenzo.scm @@ -1,5 +1,5 @@ ;;; The Inevitable Game -;;; Copyright © 2018, 2019 Ricardo Wurmus +;;; Copyright © 2018, 2019, 2021 Ricardo Wurmus ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU General Public License as @@ -16,8 +16,8 @@ ;;; . (define-module (characters lorenzo) - #:use-module (chickadee render texture) - #:use-module (chickadee render color) + #:use-module (chickadee graphics texture) + #:use-module (chickadee graphics color) #:use-module (chickadee math rect) #:use-module (chickadee math vector) #:use-module (engine assets) diff --git a/characters/reaper.scm b/characters/reaper.scm index 1a93ab1..e97d8b2 100644 --- a/characters/reaper.scm +++ b/characters/reaper.scm @@ -1,5 +1,5 @@ ;;; The Inevitable Game -;;; Copyright © 2018 Ricardo Wurmus +;;; Copyright © 2018, 2021 Ricardo Wurmus ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU General Public License as @@ -16,8 +16,8 @@ ;;; . (define-module (characters reaper) - #:use-module (chickadee render texture) - #:use-module (chickadee render color) + #:use-module (chickadee graphics texture) + #:use-module (chickadee graphics color) #:use-module (chickadee math rect) #:use-module (chickadee math vector) #:use-module (engine assets) -- cgit v1.2.3