Files
OpenMaidEngine/engine/Age.Engine/Hosting/IScriptProvider.cs
2026-07-07 13:09:50 -04:00

11 lines
411 B
C#

using Age.Engine.Model;
namespace Age.Engine.Hosting;
/// <summary>Resolves a call-script id (a raw SYS4INI file index) to a loaded <see cref="Script"/>.
/// Implemented in Sys4; injected into the VM so the Vm layer never references Sys4.</summary>
public interface IScriptProvider
{
/// <summary>The script for this id, or null if the id maps to no known script.</summary>
Script? GetById(long id);
}