-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwords.h
More file actions
21 lines (20 loc) · 1.27 KB
/
words.h
File metadata and controls
21 lines (20 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef WORDS_H
#define WORDS_H
#include <vector>
#include <string>
using namespace std;
const vector<string> words = {
"rocket", "asteroid", "galaxy", "comet", "planet", "orbit", "gravity", "meteor", "satellite",
"universe", "nebula", "eclipse", "lunar", "solar", "cosmos", "blackhole", "lightyear", "quasar",
"supernova", "telescope", "spaceship", "module", "launch", "astronaut", "probe", "module",
"milkyway", "nasa", "alien", "extraterrestrial", "radiation", "spacetime", "wormhole", "star",
"trajectory", "rover", "capsule", "thruster", "ion", "fuel", "oxygen", "spacesuit", "apollo",
"voyager", "mercury", "venus", "earth", "mars", "jupiter", "saturn", "uranus", "neptune", "pluto",
"titan", "europa", "deimos", "phobos", "asterism", "atmosphere", "axis", "celestial", "constellation",
"core", "darkmatter", "dust", "flare", "gamma", "helium", "hubble", "impact", "infrared", "juno",
"launchpad", "magnitude", "mission", "moondust", "observatory", "orbiters", "pulsar", "quantum",
"reentry", "satcom", "skywalk", "spaceshuttle", "spectrum", "stardust", "starlight", "station",
"stratosphere", "sunspot", "telemetry", "thrusters", "titanium", "vacuum", "velocity", "zenith",
"zenon", "turbulence", "navigation", "gravitywell", "liftoff"
};
#endif