13 lines
210 B
Haskell
13 lines
210 B
Haskell
module Dodge.CharacterEnums (
|
|
cFilledRect,
|
|
cWireRect,
|
|
) where
|
|
|
|
cFilledRect :: Char
|
|
{-# INLINE cFilledRect #-}
|
|
cFilledRect = toEnum 219
|
|
|
|
cWireRect :: Char
|
|
{-# INLINE cWireRect #-}
|
|
cWireRect = toEnum 128
|