From 4005878930047e686a5efbd876ebee4cb3d97442 Mon Sep 17 00:00:00 2001 From: Stedd Date: Sat, 5 Oct 2024 15:35:58 +0200 Subject: [PATCH] Fixed bug in PowerBase initialization --- Interfaces/IPowerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interfaces/IPowerSystem.cs b/Interfaces/IPowerSystem.cs index 87c50f0..7cf2232 100644 --- a/Interfaces/IPowerSystem.cs +++ b/Interfaces/IPowerSystem.cs @@ -8,7 +8,7 @@ namespace GameDev.CoreSystems public void SetMaxPower(int newValue); - public void SetConfig(SoPowerConfig config); + public void Initialize(SoPowerConfig config); public int GetMaxPower();