Skip to content

Commit

Permalink
Added functionality to creating a order for a particular table
Browse files Browse the repository at this point in the history
  • Loading branch information
rrk12005 committed Apr 4, 2017
1 parent 289f9bb commit 8508962
Show file tree
Hide file tree
Showing 13 changed files with 585 additions and 267 deletions.
3 changes: 3 additions & 0 deletions Enigma/Enigma.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@
<ItemGroup>
<None Include="Resources\lonely_sun_by_butterflypics-d8orr9a.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\gradient-background-26046-26731-hd-wallpapers.jpg.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
37 changes: 23 additions & 14 deletions Enigma/EnigmaMain.Designer.cs

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

8 changes: 8 additions & 0 deletions Enigma/EnigmaMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ private void hostButton_Click(object sender, EventArgs e)
station.showView();
}


private void debugButton_Click(object sender, EventArgs e)
{
DebugStation station = new DebugStation(EnigmaX.Classes.StationTypeDef.host, "debug");
Expand All @@ -73,5 +74,12 @@ private void adminButton_Click(object sender, EventArgs e)
loadedStations.Add(station);
station.showView();
}

private void waiterbutton_Click(object sender, EventArgs e)
{
WaiterStation station = new WaiterStation("debugwaiter");
loadedStations.Add(station);
station.showView();
}
}
}
167 changes: 121 additions & 46 deletions Enigma/Popups/tableOrder.Designer.cs

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

Loading

0 comments on commit 8508962

Please sign in to comment.