2 changed files with 26 additions and 14 deletions
@ -0,0 +1,9 @@ |
|||||||
|
namespace EGFramework.ProtocolHelper |
||||||
|
{ |
||||||
|
public struct DataConnection |
||||||
|
{ |
||||||
|
public string Sender { set; get; } |
||||||
|
public ProtocolType ProtocolType { set; get; } |
||||||
|
private bool IsConnected { set; get; } |
||||||
|
} |
||||||
|
} |
@ -1,26 +1,29 @@ |
|||||||
using Godot; |
using Godot; |
||||||
using System; |
using System; |
||||||
|
namespace EGFramework.ProtocolHelper |
||||||
public partial class ViewProtocolHelper : Node |
|
||||||
{ |
{ |
||||||
|
public partial class ViewProtocolHelper : Node |
||||||
public override void _Ready() |
|
||||||
{ |
{ |
||||||
|
|
||||||
} |
public override void _Ready() |
||||||
|
{ |
||||||
|
|
||||||
public override void _ExitTree() |
} |
||||||
{ |
|
||||||
|
|
||||||
} |
public override void _ExitTree() |
||||||
|
{ |
||||||
|
|
||||||
public void RefreshConnectList() |
} |
||||||
{ |
|
||||||
|
|
||||||
} |
public void RefreshConnectList() |
||||||
|
{ |
||||||
|
|
||||||
public void RefreshProtocolList() |
} |
||||||
{ |
|
||||||
|
|
||||||
|
public void RefreshProtocolList() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue