added app and tv systems

This commit is contained in:
Wyatt J. Miller
2019-12-28 22:42:24 -05:00
parent 92a54b19f5
commit a87f6ac3d3
9 changed files with 62 additions and 0 deletions

19
src/app.rs Normal file
View File

@ -0,0 +1,19 @@
// enum used when a certain TV app is being used
enum ActiveApp {
Netflix,
Hulu,
AmazonPrime,
Pandora,
Spotify,
Crunchyroll,
Funimation,
VRV,
}
// enum used to select what kind of TV you are using
enum TV {
Roku,
Android,
Samsung,
Amazon,
}

0
src/config.rs Normal file
View File

1
src/generate.rs Normal file
View File

@ -0,0 +1 @@