14 lines
433 B
C#
14 lines
433 B
C#
namespace ArtificersScrollwork.Sidecar.Gumps;
|
|
|
|
/// <summary>
|
|
/// Extracts Add* calls from Gump constructors and produces a GumpDrawList.
|
|
/// TODO (Phase 4): Full implementation.
|
|
/// </summary>
|
|
public class GumpExtractor
|
|
{
|
|
// Phase 4 implementation placeholder.
|
|
// Will walk the constructor body of a Gump class,
|
|
// map Add* method calls to DrawCall records,
|
|
// and detect dynamic regions (loop/conditional bodies).
|
|
}
|