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
|
//
// ToyStrings.h
// HalloweenSpaceInvaders
//
// Created by Katarzyna Kalinowska-Górska on 06/10/2019.
//
#ifndef ToyStrings_h
#define ToyStrings_h
namespace ToyStrings {
const char* const LINK_TERMS_OF_SERVICE = "https://app.steveandmaggie.com/terms-of-use.html";
const char* const LINK_PRIVACY_POLICY = "https://app.steveandmaggie.com/principles-of-personal-data-processing.html";
// extern const char* LINK_TERMS_OF_SERVICE;
// extern const char* LINK_PRIVACY_POLICY;
// extern const char* LINK_ABOUT_WE;
};
#endif /* ToyStrings_h */
|