it really is best not to rewrite history. bring this back from the dead.

This commit is contained in:
Brian O'Reilly 2025-11-02 16:16:56 -05:00
parent b80dea5a08
commit 69b0b2ca9e
2 changed files with 5 additions and 4 deletions

View File

@ -8,9 +8,9 @@
(in-package :asteroid) (in-package :asteroid)
;; Define as RADIANCE module ;; Define as RADIANCE module
(define-module asteroid ;; (define-module asteroid
(:use #:cl #:radiance #:lass #:r-clip) ;; (:use #:cl #:radiance #:lass #:r-clip)
(:domain "asteroid")) ;; (:domain "asteroid"))
;; Configuration -- this will be refactored to a dedicated ;; Configuration -- this will be refactored to a dedicated
;; configuration logic. Probably using 'ubiquity ;; configuration logic. Probably using 'ubiquity

View File

@ -1,5 +1,6 @@
(in-package #:rad-user) (in-package #:rad-user)
(define-module #:asteroid (define-module #:asteroid
(:use #:cl #:radiance #:asteroid.app-utils) (:use #:cl #:radiance #:lass #:r-clip #:asteroid.app-utils)
(:domain "asteroid")
(:export #:-main)) (:export #:-main))