Blame view

ios/Runner/Wowgame/Classes/game_food/DrawingUtils.h 377 Bytes
cb213901   xiaoyu   添加一个游戏的源码和编译选项
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  //
  //  DrawingUtils.h
  //  SteveMaggieCpp
  //
  //  Created by Katarzyna Kalinowska-Górska on 20.05.2017.
  //
  //
  
  #ifndef DrawingUtils_h
  #define DrawingUtils_h
  
  #include "cocos2d.h"
  #include <vector>
  
  class DrawingUtils
  {
      public:
          static std::vector<cocos2d::Point> calculateSmoothLinePoints(std::vector<cocos2d::Point> threeLastPoints);
  };
  
  #endif /* DrawingUtils_h */