OpenClonk
C4Licenses.h
Go to the documentation of this file.
1 #ifndef C4LICENSES_H
2 #define C4LICENSES_H
3 
4 #include<string>
5 #include<vector>
6 
7 struct OCLicenseInfo { std::string path; std::string name; std::string content; };
8 extern const std::vector<OCLicenseInfo> OCLicenses;
9 
10 #endif // C4LICENSES_H
const std::vector< OCLicenseInfo > OCLicenses
std::string name
Definition: C4Licenses.h:7
std::string content
Definition: C4Licenses.h:7
std::string path
Definition: C4Licenses.h:7