amethyst/apps/example_game/lib/example/game.ex
Kodi Craft 0fdc00148e
All checks were successful
Build & Test / nix-build (push) Successful in 3m36s
Build & Test / nix-build (pull_request) Successful in 3m36s
Clean some warnings
2024-09-09 18:45:52 +02:00

29 lines
629 B
Elixir

defmodule Example.Game do
require Logger
@behaviour Amethyst.API.Game
@impl true
def instantiate(supervisor) do
Logger.info("The supervisor for this game is at #{inspect(supervisor)}")
{:ok, %{}}
end
@impl true
def login(from, cfg, refs) do
Logger.info("Player logged in from #{inspect(from)}: #{inspect(cfg)}")
Logger.info("The refs for this game are #{inspect(refs)}")
:accept
end
@impl true
def player_position(from, {x, y, z}, _refs) do
Logger.info("Player at #{inspect(from)} moved to #{x}, #{y}, #{z}")
:ok
end
@impl true
def joinable?(_refs) do
true
end
end