regroup opengl version and window creation and event polling in the viewport file. To further clean up the files layout, move input.lisp to engine folder gl-utils is now used for some simple macros
16 lines
387 B
Common Lisp
16 lines
387 B
Common Lisp
#|
|
|
This file is a part of stoe project.
|
|
Copyright (c) 2015 Renaud Casenave-Péré (renaud@casenave-pere.fr)
|
|
|#
|
|
|
|
(uiop:define-package :stoe/engine/all
|
|
(:nicknames :engine)
|
|
(:use-reexport
|
|
:stoe/engine/gl-utils
|
|
:stoe/engine/scene
|
|
#+stoe-foreign-assets
|
|
:stoe/engine/import
|
|
:stoe/engine/input
|
|
:stoe/engine/viewport
|
|
:stoe/engine/render
|
|
:stoe/engine/shaders))
|