Skip to content

Commit

Permalink
Merge pull request #16 from Terence-D/minor-tweaks
Browse files Browse the repository at this point in the history
Minor tweaks
  • Loading branch information
Terence-D authored Jan 24, 2019
2 parents 8c1e2fa + 159026b commit 57200bc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions GameInputCommandSystem/Views/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,16 @@ private void ToggleServer()
{
server.Stop();
isRunning = !isRunning;
txtPassword.IsEnabled = true;
txtPort.IsEnabled = true;
txtTarget.IsEnabled = true;
}
else
{
isRunning = server.Start();
txtPassword.IsEnabled = false;
txtPort.IsEnabled = false;
txtTarget.IsEnabled = false;
}
toggleText();
}
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Gaming Input Command Server (Windows)
Windows server for the Gaming Interface Client

## Guide
https://github.com/Terence-D/GameInputCommandServer/wiki

## Description
This is part of a two app system that allows the use of a remote device (Tablet or Phone) to provide input into a PC game or application. This software is the Windows Server and runs on your Windows PC. It talks to GIC for Android - https://github.com/Terence-D/GamingInterfaceClientAndroid/wiki and will accept commands from it and pass it off to whatever application or game you have set it for. For example if you play a space simulator, you can add custom buttons for Comms, Warp Drive, Power control, etc and have it accessible at your fingertips without remembering complex keystrokes.

## Features
Expand Down

0 comments on commit 57200bc

Please sign in to comment.