aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/assets/asset.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/asset.lisp')
-rw-r--r--src/assets/asset.lisp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/assets/asset.lisp b/src/assets/asset.lisp
index 5f847da..e1b4f57 100644
--- a/src/assets/asset.lisp
+++ b/src/assets/asset.lisp
@@ -2,9 +2,10 @@
(in-package #:wheelwork)
-(defclass/std asset ()
- ((path :with :ri :std (error "An asset requires a path"))
- (loadedp :with :a)))
+(def:class asset ()
+ ((path "Path to asset") :required :ro :prefix
+ :type (or pathname string))
+ (loadedp :prefix :type boolean :initform nil))
(defmethod cleanup :around ((asset asset))
(when (asset-loadedp asset)