defmodule ExTTRPGDev.RuleSystems.LoadedSystem do @moduledoc """ Represents a fully loaded and validated rule system, ready for evaluation. Produced by `ExTTRPGDev.RuleSystems.load_system!/1`. """ defstruct [:module, :graph, :nodes, :rolling_methods, :concept_metadata, :effects] end