2022-07-01 16:38:07 +08:00
|
|
|
//
|
|
|
|
// Created by ricardo on 2022/7/1.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef AUTO_BUS_GUI_SETTINGS_H
|
|
|
|
#define AUTO_BUS_GUI_SETTINGS_H
|
|
|
|
|
2022-07-09 10:11:35 +08:00
|
|
|
/**
|
|
|
|
* 设置控制类
|
|
|
|
*/
|
2022-07-01 16:38:07 +08:00
|
|
|
class Settings
|
|
|
|
{
|
|
|
|
public:
|
2022-07-09 10:11:35 +08:00
|
|
|
/**
|
|
|
|
* 设置每一tick的持续时间
|
|
|
|
*/
|
2022-07-01 16:38:07 +08:00
|
|
|
const static int tick = 2000;
|
|
|
|
};
|
|
|
|
#endif //AUTO_BUS_GUI_SETTINGS_H
|