89 lines
2.4 KiB
Rust
89 lines
2.4 KiB
Rust
#[derive(Debug, Clone, Copy)]
|
|
pub enum Topic {
|
|
Text(&'static str),
|
|
Player,
|
|
None,
|
|
}
|
|
|
|
pub const TOPICS: [Topic; 79] = [
|
|
Topic::None,
|
|
Topic::Player,
|
|
Topic::Text("adulthood"),
|
|
Topic::Text("appointments"),
|
|
Topic::Text("apps / programs"),
|
|
Topic::Text("art"),
|
|
Topic::Text("artificial intelligence"),
|
|
Topic::Text("beverages"),
|
|
Topic::Text("childhood"),
|
|
Topic::Text("clothes"),
|
|
Topic::Text("colors"),
|
|
Topic::Text("commitments"),
|
|
Topic::Text("commuting"),
|
|
Topic::Text("computers"),
|
|
Topic::Text("cooking"),
|
|
Topic::Text("countries"),
|
|
Topic::Text("COVID"),
|
|
Topic::Text("current events"),
|
|
Topic::Text("dreams"),
|
|
Topic::Text("family"),
|
|
Topic::Text("fitness"),
|
|
Topic::Text("flying"),
|
|
Topic::Text("friends"),
|
|
Topic::Text("fun facts"),
|
|
Topic::Text("geography"),
|
|
Topic::Text("gifts"),
|
|
Topic::Text("goals"),
|
|
Topic::Text("growing up"),
|
|
Topic::Text("history"),
|
|
Topic::Text("hobbies"),
|
|
Topic::Text("holidays"),
|
|
Topic::Text("hygiene"),
|
|
Topic::Text("jokes"),
|
|
Topic::Text("kids"),
|
|
Topic::Text("literature"),
|
|
Topic::Text("living spaces"),
|
|
Topic::Text("math"),
|
|
Topic::Text("memes"),
|
|
Topic::Text("memories"),
|
|
Topic::Text("movies"),
|
|
Topic::Text("music"),
|
|
Topic::Text("night"),
|
|
Topic::Text("nostalgia"),
|
|
Topic::Text("out to eat"),
|
|
Topic::Text("pets"),
|
|
Topic::Text("philosophy"),
|
|
Topic::Text("politics"),
|
|
Topic::Text("pranks"),
|
|
Topic::Text("professions"),
|
|
Topic::Text("purchases"),
|
|
Topic::Text("relationships"),
|
|
Topic::Text("relaxing"),
|
|
Topic::Text("religion"),
|
|
Topic::Text("respect"),
|
|
Topic::Text("retirement"),
|
|
Topic::Text("routines"),
|
|
Topic::Text("science"),
|
|
Topic::Text("school"),
|
|
Topic::Text("seasons"),
|
|
Topic::Text("sickness"),
|
|
Topic::Text("sleep"),
|
|
Topic::Text("smartphones"),
|
|
Topic::Text("social media"),
|
|
Topic::Text("socializing"),
|
|
Topic::Text("space"),
|
|
Topic::Text("spoilers"),
|
|
Topic::Text("sports"),
|
|
Topic::Text("super powers"),
|
|
Topic::Text("the future"),
|
|
Topic::Text("the internet"),
|
|
Topic::Text("tradition"),
|
|
Topic::Text("travel"),
|
|
Topic::Text("tv"),
|
|
Topic::Text("vacations"),
|
|
Topic::Text("video games"),
|
|
Topic::Text("weather"),
|
|
Topic::Text("wildlife"),
|
|
Topic::Text("work"),
|
|
Topic::Text("workspaces"),
|
|
];
|