2020-02-01 21:30:23 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2020 FIRST. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace halsimgui {
|
|
|
|
|
|
2020-09-12 10:55:46 -07:00
|
|
|
class NetworkTablesSimGui {
|
2020-02-01 21:30:23 -08:00
|
|
|
public:
|
|
|
|
|
static void Initialize();
|
2020-09-12 10:55:46 -07:00
|
|
|
static void DisplayMenu();
|
2020-02-01 21:30:23 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace halsimgui
|