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

9 lines
140 B
Elixir
Raw Normal View History

2024-08-17 19:43:08 +02:00
defmodule Example.Game do
use Amethyst.API.Game, meta: [default: true]
@impl true
def instantiate() do
{:ok, [:hello]}
end
end