2 changed files with 26 additions and 14 deletions
@ -0,0 +1,9 @@
@@ -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 @@
@@ -1,26 +1,29 @@
|
||||
using Godot; |
||||
using System; |
||||
|
||||
public partial class ViewProtocolHelper : Node |
||||
namespace EGFramework.ProtocolHelper |
||||
{ |
||||
|
||||
public override void _Ready() |
||||
public partial class ViewProtocolHelper : Node |
||||
{ |
||||
|
||||
} |
||||
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