Packages

Ecspanse is an Entity Component System (ECS) library for Elixir, offering a suite of features including: flexible queries with multiple filters, dynamic bidirectional relationships, versatile tagging capabilities, system event subscriptions, or asynchronous system execution.

Current section

Files

Jump to
ecspanse lib ecspanse system debug.ex
Raw

lib/ecspanse/system/debug.ex

defmodule Ecspanse.System.Debug do
@moduledoc """
Generic system to be used by the `Ecspanse.System.debug/0`
in dev and test environments.
"""
use Ecspanse.System
@impl true
def run(_frame) do
end
end