nice nice nice

This commit is contained in:
2026-08-03 13:15:39 +02:00
parent 0bb8ce47c0
commit 737919f66f
25 changed files with 206 additions and 61 deletions

View File

@@ -1,4 +1,5 @@
using Godot;
using yourareanaiceo;
[SceneTree]
public partial class TimeSlot : PanelContainer
@@ -30,4 +31,14 @@ public partial class TimeSlot : PanelContainer
if (what == NotificationDragEnd)
MouseFilter = MouseFilterEnum.Ignore;
}
public void StartMeeting()
{
GD.Print("New Meeting starts!");
var gameState = this.GetGame().GameState;
// TODO: TimeSlot hat bekommt die MeetingResource on Drop?? oder zumindest nicht über Gfx gehen
MeetingControl?.MeetingControlGfx.MeetingResource.StartMeeting(gameState);
MeetingControl?.Animate();
}
}