diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-25 23:57:06 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-25 23:57:06 +0100 |
commit | 7bd387d35baea9f6861c81f4286f68999849ea63 (patch) | |
tree | b5f6d9123753c0cfb546bc1a0baee15eb1ecc198 /characters | |
parent | 9ecdd2b37166625e99a76844f7ff0b27c2ff3022 (diff) |
Move from (chickadee render ...) to (chickadee graphics ...).
The only notable changes are listed below:
* engine/node-2d.scm (draw)<filled-rect>: Use new API from (chickadee
graphics path).
* scenes/game.scm (draw)<stats>: Same.
Diffstat (limited to 'characters')
-rw-r--r-- | characters/lorenzo.scm | 6 | ||||
-rw-r--r-- | characters/reaper.scm | 6 |
2 files changed, 6 insertions, 6 deletions
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 <rekado@elephly.net> +;;; Copyright © 2018, 2019, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; 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 @@ ;;; <http://www.gnu.org/licenses/>. (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 <rekado@elephly.net> +;;; Copyright © 2018, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; 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 @@ ;;; <http://www.gnu.org/licenses/>. (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) |