FroggyGreen
207de345f7
Window resize events are now sent from the renderer to lisp. On the lisp side, some math code has been written, but not yet integrated into the project.
23 lines
443 B
Common Lisp
23 lines
443 B
Common Lisp
(in-package #:cl-user)
|
|
|
|
(defpackage #:sof-asd
|
|
(:use :cl :asdf))
|
|
|
|
(in-package :sof-asd)
|
|
|
|
(defsystem "sof"
|
|
:version "0.0.1"
|
|
:description "A 3D roguelike/tabletop inspired adventure game."
|
|
:author "Frosch"
|
|
:license "GPLv3"
|
|
:depends-on (#:cffi-libffi)
|
|
:components
|
|
((:module "src"
|
|
:components
|
|
((:file "package")
|
|
(:file "main")
|
|
(:module "math"
|
|
:components
|
|
((:file "vec")
|
|
(:file "quat")))))))
|