;;; hud.el --- warning: disgusting minimalist maximalism ahead -*- lexical-binding: t -*- ;; ;;; Commentary: ;; ;; This attempts to be a minimal version of my Elisp/C/SDL3/OpenGL4.6/GLSL/GPU ;; project and work for the last 1.5+ years. It is drawing a 3D box on top of ;; GNU Emacs, and is useful with limited but nonetheless showcasing graphical ;; including interactive features in any/all direction (C <-> Lisp, 2D <-> 3D). ;; In the meantime try 'make glsl' to run the old stuff. ;; ;;; Code: (require 'cl-lib) (cl-pushnew "." load-path :test #'string=) (require 'luki-lisp) (ignore) (<- 'hud) ;;; hud.el ends here