diff options
-rw-r--r-- | starling/node-2d.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/starling/node-2d.scm b/starling/node-2d.scm index 7ae9a30..edb8f46 100644 --- a/starling/node-2d.scm +++ b/starling/node-2d.scm @@ -42,6 +42,7 @@ #:use-module (starling asset) #:use-module (starling kernel) #:use-module (starling node) + #:use-module (starling scene) #:export (<camera-2d> target offset @@ -56,6 +57,8 @@ <canvas> views + <scene-2d> + <node-2d> origin position @@ -220,6 +223,13 @@ ;;; +;;; 2D Scene +;;; + +(define-class <scene-2d> (<scene> <canvas>)) + + +;;; ;;; 2D Game Node ;;; |