10 lines
No EOL
251 B
C++
10 lines
No EOL
251 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
const std::unordered_map<std::string, std::string> fontPaths {
|
|
{"futura", "assets/fonts/caption.otf"},
|
|
{"helvetica", "assets/fonts/caption2.ttf"},
|
|
{"roboto", "assets/fonts/reddit.ttf"}
|
|
}; |