Skip to content

Commit

Permalink
Added table formatting and layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
CarbonNeuron committed Sep 24, 2020
1 parent b30b0fd commit 3a03c18
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 19 deletions.
2 changes: 2 additions & 0 deletions AmongUsCapture/ClientSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ public void Connect(string url)
GameMemReader.getInstance().PlayerChanged += PlayerChangedHandler;
};


socket.ConnectAsync();
}


public void SendConnectCode(string connectCode)
{
ConnectCode = connectCode;
Expand Down
66 changes: 49 additions & 17 deletions AmongUsCapture/UserForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions AmongUsCapture/UserForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ private void SubmitButton_Click(object sender, EventArgs e)
if(ConnectCodeBox.TextLength == 6)
{
clientSocket.SendConnectCode(ConnectCodeBox.Text);
ConnectCodeBox.Enabled = false;
SubmitButton.Enabled = false;
//ConnectCodeBox.Enabled = false;
//SubmitButton.Enabled = false;
}
}

Expand Down

0 comments on commit 3a03c18

Please sign in to comment.