cb213901
xiaoyu
添加一个游戏的源码和编译选项
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// TimeIndicatorInterface.h
// WattsenglishToyApp
//
// Created by Katarzyna Kalinowska-Górska on 28/12/2019.
//
#ifndef TimeIndicatorInterface_h
#define TimeIndicatorInterface_h
class TimeIndicatorInterface {
public:
virtual void setProgressFrac(float progressFrac) = 0;
virtual void setProgress(float progress) = 0;
virtual void startTimeAnimation(float timeDuration) = 0;
virtual void pauseTimeAnimation() = 0;
virtual void resumeTimeAnimation() = 0;
virtual void stopTimeAnimation() = 0;
};
#endif /* TimeIndicatorInterface_h */
|