Logo

DOME

The comfortable framework for making games in Wren

Download the latest version here!

View the Project on GitHub domeengine/dome

< Back

Modules

DOME includes a number of modules to interact with the user through graphics and audio, access their inputs and hard drive. It also has a few useful utilities for mathematical operations.

The modules you can import are here:

For example, the graphics module can be imported to access the Canvas and Color classes, like this:

import "graphics" for Canvas, Color

...

Canvas.cls()
Canvas.print("Hello world", 20, 20, Color.white)