14 lines
185 B
C
14 lines
185 B
C
//
|
|
// Created by kalle on 11/15/20.
|
|
//
|
|
|
|
#ifndef TIMER_STRUCTS_H
|
|
#define TIMER_STRUCTS_H
|
|
|
|
struct TimeData {
|
|
int seconds;
|
|
int minutes;
|
|
int hours;
|
|
};
|
|
|
|
#endif //TIMER_STRUCTS_H
|