From 69b0b2ca9ec1e7bd1ae48e02319081e24d0200f4 Mon Sep 17 00:00:00 2001 From: Brian O'Reilly Date: Sun, 2 Nov 2025 16:16:56 -0500 Subject: [PATCH] it really is best not to rewrite history. bring this back from the dead. --- asteroid.lisp | 6 +++--- module.lisp | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/asteroid.lisp b/asteroid.lisp index 2ba7a0b..ee2658d 100644 --- a/asteroid.lisp +++ b/asteroid.lisp @@ -8,9 +8,9 @@ (in-package :asteroid) ;; Define as RADIANCE module -(define-module asteroid - (:use #:cl #:radiance #:lass #:r-clip) - (:domain "asteroid")) +;; (define-module asteroid +;; (:use #:cl #:radiance #:lass #:r-clip) +;; (:domain "asteroid")) ;; Configuration -- this will be refactored to a dedicated ;; configuration logic. Probably using 'ubiquity diff --git a/module.lisp b/module.lisp index a965b55..f9bafef 100644 --- a/module.lisp +++ b/module.lisp @@ -1,5 +1,6 @@ (in-package #:rad-user) (define-module #:asteroid - (:use #:cl #:radiance #:asteroid.app-utils) + (:use #:cl #:radiance #:lass #:r-clip #:asteroid.app-utils) + (:domain "asteroid") (:export #:-main))