From 81eb3e215f5c724d035909530ff1c85ba6b9b75d Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Mon, 26 Feb 2024 08:48:43 +0800 Subject: [PATCH] rename DeclareRunner to GetRunnerInstance --- src/AutoRunners/ProcessRunnerBinder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoRunners/ProcessRunnerBinder.cs b/src/AutoRunners/ProcessRunnerBinder.cs index 3361905..eaa128f 100644 --- a/src/AutoRunners/ProcessRunnerBinder.cs +++ b/src/AutoRunners/ProcessRunnerBinder.cs @@ -6,7 +6,7 @@ namespace DCFApixels.DragonECS { public static class ProcessRunnerBinder { - private static MethodInfo _declareRunnerMethod = typeof(EcsPipeline).GetMethod(nameof(EcsPipeline.DeclareRunner)); + private static MethodInfo _declareRunnerMethod = typeof(EcsPipeline).GetMethod(nameof(EcsPipeline.GetRunnerInstance)); public static T GetRunnerAuto(this EcsPipeline self) where T : IEcsProcess { if(self.TryGetRunner(out T process))