You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
488 B

3 months ago
using EGFramework;
3 months ago
using Godot;
using System;
3 months ago
using System.Collections.Generic;
3 months ago
3 months ago
namespace EGFramework.ProtocolHelper
3 months ago
{
3 months ago
public partial class ViewProtocolHelperTerminal : RichTextLabel
3 months ago
{
3 months ago
public Dictionary<long, ResponseMsg> MessageMappings { set; get; } = new Dictionary<long, ResponseMsg>();
public override void _Ready()
{
3 months ago
3 months ago
}
3 months ago
3 months ago
public void ClearArea()
{
}
public void RefreshProtocol()
{
3 months ago
3 months ago
}
}
}