| 670 | } |
| 671 | |
| 672 | void Visualizer::StartThread() |
| 673 | { |
| 674 | //Set application running flag to TRUE before starting threads |
| 675 | running = true; |
| 676 | |
| 677 | VisThread = new std::thread(&Visualizer::VisThreadFunction, this); |
| 678 | NetConnectThread = new std::thread(&Visualizer::NetConnectThreadFunction, this); |
| 679 | NetUpdateThread = new std::thread(&Visualizer::NetUpdateThreadFunction, this); |
| 680 | } |
| 681 | |
| 682 | void Visualizer::Shutdown() |
| 683 | { |