Current section

Files

Jump to
islands_engine lib islands engine proxy game_not_started.ex
Raw

lib/islands/engine/proxy/game_not_started.ex

defmodule Islands.Engine.Proxy.GameNotStarted do
alias IO.ANSI.Plus, as: ANSI
@spec message(String.t()) :: ANSI.ansilist()
def message(game_name) do
[
:fuchsia_background,
:light_white,
"Game ",
:fuchsia_background,
:stratos,
"#{game_name}",
:fuchsia_background,
:light_white,
" not started."
]
end
end