auto_bus/include/Settings.h

20 lines
284 B
C
Raw Normal View History

//
// 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
/**
*
*/
class Settings
{
public:
2022-07-09 10:11:35 +08:00
/**
* tick的持续时间
*/
const static int tick = 2000;
};
#endif //AUTO_BUS_GUI_SETTINGS_H