Blame view

ios/Runner/Wowgame/Classes/game_halloween/HalloweenResourcesConfig.cpp 841 Bytes
5daad4bc   xiaoyu   游戏源码添加编译(现存问题:游戏内...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  //
  //  HResourcesConfig.cpp
  //  HalloweenSpaceInvaders-mobile
  //
  //  Created by Katarzyna Kalinowska-Górska on 04/09/2019.
  //
  
  #include <stdio.h>
  #include "HResourcesConfig.h"
  
  namespace HResourcesConfig {
  
      const char* RES_FOLDER_NAME_XLARGE = "xlarge";
      const char* RES_FOLDER_NAME_LARGE = "large";
      const char* RES_FOLDER_NAME_MEDIUM = "medium";
  
      const std::string LEVEL_BABY_IMAGE_PATH = "graphics/levels/level_1.png";
      const std::string LEVEL_TEEN_IMAGE_PATH = "graphics/levels/level_2.png";
      const std::string LEVEL_ADULT_IMAGE_PATH = "graphics/levels/level_3.png";
  
      const std::string INTRO_1_SOUND_FILE_PATH = "sounds/g_speech/g_intro.mp3";
      const std::string PICK_LEVEL_SOUND_FILE_PATH = "sounds/g_speech/g_pick_level.mp3";
      const std::string INTRO_2_SOUND_FILE_PATH = "sounds/g_speech/g_intro2.mp3";
  }