mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-29 21:05:59 +02:00
Initial console support
This commit is contained in:
parent
45a5978611
commit
186c2125fa
21 changed files with 1244 additions and 29 deletions
24
IDE/src/ui/TerminalPanel.bf
Normal file
24
IDE/src/ui/TerminalPanel.bf
Normal file
|
@ -0,0 +1,24 @@
|
|||
#pragma warning disable 168
|
||||
|
||||
using System;
|
||||
using Beefy.geom;
|
||||
using Beefy.gfx;
|
||||
using System.Text;
|
||||
using Beefy.theme.dark;
|
||||
using System.Security.Cryptography;
|
||||
using Beefy.widgets;
|
||||
using Beefy.events;
|
||||
using System.Diagnostics;
|
||||
using Beefy.utils;
|
||||
|
||||
namespace IDE.ui;
|
||||
|
||||
class TerminalPanel : Panel
|
||||
{
|
||||
public override void Serialize(StructuredData data)
|
||||
{
|
||||
base.Serialize(data);
|
||||
|
||||
data.Add("Type", "TerminalPanel");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue