umstyling + meetingresource

This commit is contained in:
2026-07-27 22:11:29 +02:00
parent 1061ae90b1
commit c1e9cd4293
16 changed files with 169 additions and 62 deletions

11
MeetingControlGfx.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
using Godot;
[SceneTree]
public partial class MeetingControlGfx : PanelContainer
{
public void SetMeetingTitle(string title)
{
MeetingTitle.Text = title;
}
}