Packages
This is an implementation of the Entity Component System software structural architecture, aimed towards game server development in Elixir.
Current section
Files
Jump to
Current section
Files
lib/sesopenko/ecs.ex
defmodule Sesopenko.ECS do
@moduledoc """
Documentation for Sesopenko.ECS.
"""
@doc """
Hello world.
## Examples
iex> Sesopenko.ECS.hello()
:world
"""
def hello do
:world
end
end