Add Licensing and Contributing
[clnl] / src / main / clnl-gltk / package.lisp
1 ; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
2 (defpackage #:clnl-gltk (:use :cl)
3  (:export
4   #:render #:resize #:reposition #:mousemove #:mousedown #:mouseup #:toggle
5   #:font-print *font-width* *font-height*
6   #:textbox #:textbox-text
7   #:inputbox #:key-pressed #:value #:clear
8   #:button
9   #:slider #:*slider-height*
10   #:switch #:*switch-height*
11   #:setup)
12  (:documentation "Main clnl-gltk package.
13
14 Use widgets available in clnl-gltk to create NetLogo user interface widgets in
15 pure opengl.  This project doesn't have much usefulness outside of CLNL."))