2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-09-23 00:24:10 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-12 10:55:46 -07:00
|
|
|
namespace glass {
|
|
|
|
|
class EncodersModel;
|
|
|
|
|
} // namespace glass
|
|
|
|
|
|
2019-09-23 00:24:10 -07:00
|
|
|
namespace halsimgui {
|
|
|
|
|
|
2020-09-12 10:55:46 -07:00
|
|
|
class EncoderSimGui {
|
2019-09-23 00:24:10 -07:00
|
|
|
public:
|
|
|
|
|
static void Initialize();
|
2020-09-12 10:55:46 -07:00
|
|
|
static glass::EncodersModel& GetEncodersModel();
|
2019-09-23 00:24:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace halsimgui
|