amethyst/apps/example_game/lib/example/game.ex

9 lines
140 B
Elixir

defmodule Example.Game do
use Amethyst.API.Game, meta: [default: true]
@impl true
def instantiate() do
{:ok, [:hello]}
end
end