Blame view

ios/Runner/Wowgame/Classes/game_toy/ToyTimeIndicatorInterface.h 495 Bytes
5daad4bc   xiaoyu   游戏源码添加编译(现存问题:游戏内...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  //
  //  ToyTimeIndicatorInterface.h
  //  WattsenglishToyApp
  //
  //  Created by Katarzyna Kalinowska-Górska on 28/12/2019.
  //
  
  #ifndef ToyTimeIndicatorInterface_h
  #define ToyTimeIndicatorInterface_h
  
  class ToyTimeIndicatorInterface {
  public:
      virtual void setProgressFrac(float progressFrac) = 0;
      virtual void setProgress(float progress) = 0;
      virtual void startTimeAnimation(float timeDuration) = 0;
      virtual void stopTimeAnimation() = 0;
  };
  
  #endif /* ToyTimeIndicatorInterface_h */