12 lines
193 B
C#
12 lines
193 B
C#
using System;
|
|
using Godot;
|
|
|
|
[SceneTree]
|
|
public partial class MeetingControlGfx : PanelContainer
|
|
{
|
|
public void SetMeetingTitle(string title)
|
|
{
|
|
MeetingTitle.Text = title;
|
|
}
|
|
}
|