jellyfin-rich-presence/WindowsFormsApplication2/ConsoleManager.cs
2025-04-22 11:04:12 -06:00

17 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JellyfinRPC
{
class ConsoleManager
{
static Form1 MainForm;
public static void writeToConsole(string Line)
{
MainForm = new Form1();
MainForm.listBox1.Items.Add(Line);
}
}
}