; SPDX-FileCopyrightText: 2023 Jummit
;
; SPDX-License-Identifier: GPL-3.0-or-later

(fn draw-text [world]
  (each [_ entity (ipairs world)]
    (case entity {: text : x : y :small ?small}
      (print text x y 13 false 1 ?small))))

{: draw-text}