A package can be composed of several modules organized into folders. For example:
wui
|_ main.w
|_ widgets.w
|_ graphics.w
|_ inputs.w
|_ sounds.w
|_ assets
|_ fonts
|_ ...
We could import wui like:
import wui
from wui.graphics import drawRectangle
from wui.widgets import *
A package can be composed of several modules organized into folders. For example:
wui
|_ main.w
|_ widgets.w
|_ graphics.w
|_ inputs.w
|_ sounds.w
|_ assets
|_ fonts
|_ ...
We could import wui like:
import wui
from wui.graphics import drawRectangle
from wui.widgets import *