Function: bubbles--grid-height
bubbles--grid-height is a byte-compiled function defined in
bubbles.el.gz.
Signature
(bubbles--grid-height)
Documentation
Return the grid height for the current game theme.
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defsubst bubbles--grid-height ()
"Return the grid height for the current game theme."
(cdr (pcase bubbles-game-theme
('easy
bubbles--grid-small)
('medium
bubbles--grid-medium)
('difficult
bubbles--grid-large)
('hard
bubbles--grid-huge)
('user-defined
bubbles-grid-size))))