9 lines
140 B
Elixir
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
|