From 0f131e36cb5fe1108caca01bfafa2bcbdaccc97c Mon Sep 17 00:00:00 2001 From: Tim Young Date: Sat, 22 Aug 2015 14:24:57 -0700 Subject: [PATCH] uncomment wireless devices so we can add them to the network --- EduNetworkBuilder/NetworkBuilder.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/EduNetworkBuilder/NetworkBuilder.cs b/EduNetworkBuilder/NetworkBuilder.cs index 789c6c2..4ecdec6 100644 --- a/EduNetworkBuilder/NetworkBuilder.cs +++ b/EduNetworkBuilder/NetworkBuilder.cs @@ -284,10 +284,10 @@ namespace EduNetworkBuilder BuildButton("btnCopier", Properties.Resources.Copier, "Add a copier to the network."); BuildButton("btnMicrowave", Properties.Resources.microwave, "Add a microwave to the network."); BuildButton("btnFluorescent", Properties.Resources.fluorescent, "Add a light to the network."); - //BuildButton("btnWAP", Properties.Resources.wap, "Add a Wireless Access Point to the network."); - //BuildButton("btnWRouter", Properties.Resources.WRouter, "Add a Wireless Router to the network."); - //BuildButton("btnWBridge", Properties.Resources.WBridge, "Add a Wireless Bridge to the network."); - //BuildButton("btnWRepeater", Properties.Resources.WRepeater, "Add a Wireless Repeater to the network."); + BuildButton("btnWAP", Properties.Resources.wap, "Add a Wireless Access Point to the network."); + BuildButton("btnWRouter", Properties.Resources.WRouter, "Add a Wireless Router to the network."); + BuildButton("btnWBridge", Properties.Resources.WBridge, "Add a Wireless Bridge to the network."); + BuildButton("btnWRepeater", Properties.Resources.WRepeater, "Add a Wireless Repeater to the network."); BuildButton("btnLink", Properties.Resources.link, "Use a network cable to connect network components."); BuildButton("btnSelect", Properties.Resources.select, "Select items from the network."); }