From 70bba45b8a9afabba3a6e56bede50be35eb2526e Mon Sep 17 00:00:00 2001 From: Jens Becker Date: Thu, 14 May 2026 13:17:23 +0200 Subject: [PATCH] asd --- Gui.cs | 13 ++++ Gui.cs.uid | 1 + base.tscn | 43 ++++++++---- gui.tscn | 43 ++++++++++++ main.tscn | 14 +++- pip.tscn | 11 ++- project.godot | 4 ++ scheppes_x.tscn | 34 +++++++++ scripts/Base.cs | 81 +++++++++++----------- scripts/EventBus.cs | 23 ++++++ scripts/EventBus.cs.uid | 1 + scripts/Faction.cs | 6 +- scripts/Pip.cs | 10 ++- scripts/TODO.md | 10 +++ scripts/components/HealthComponent.cs | 19 ++++- scripts/components/SpawnerComponent.cs | 42 +++++++++++ scripts/components/SpawnerComponent.cs.uid | 1 + scripts/components/SpawnerComponent.tscn | 8 +++ 18 files changed, 293 insertions(+), 71 deletions(-) create mode 100644 Gui.cs create mode 100644 Gui.cs.uid create mode 100644 gui.tscn create mode 100644 scheppes_x.tscn create mode 100644 scripts/EventBus.cs create mode 100644 scripts/EventBus.cs.uid create mode 100644 scripts/TODO.md create mode 100644 scripts/components/SpawnerComponent.cs create mode 100644 scripts/components/SpawnerComponent.cs.uid create mode 100644 scripts/components/SpawnerComponent.tscn diff --git a/Gui.cs b/Gui.cs new file mode 100644 index 0000000..978e122 --- /dev/null +++ b/Gui.cs @@ -0,0 +1,13 @@ +using Godot; +using NodeWar.scripts; + +public partial class Gui : Control +{ + private Label _infoLabel; + + public override void _Ready() + { + _infoLabel = GetNode