The comfortable framework for making games in Wren
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)