14 lines
202 B
C
14 lines
202 B
C
|
//
|
||
|
// Created by ricardo on 2022/7/1.
|
||
|
//
|
||
|
|
||
|
#ifndef AUTO_BUS_GUI_SETTINGS_H
|
||
|
#define AUTO_BUS_GUI_SETTINGS_H
|
||
|
|
||
|
class Settings
|
||
|
{
|
||
|
public:
|
||
|
const static int tick = 2000;
|
||
|
};
|
||
|
#endif //AUTO_BUS_GUI_SETTINGS_H
|