Eat Poop You Cat for Android
Get it on!
Status
Translation Status
Premise
Eat Poop You Cat is a bit like telephone meets that one game where you try to get folks to guess the drawing.
You start with a sentence pass it to the next person and it they draw a picture. Then they pass it to the next person and they can only see the last entry (picture in this case) and they write a sentence. It goes on until everyone has had a turn or boredom takes hold.
Screenshots
Info Needed from user
- Display Name
Rules
- Each person can only play once per Unique game
- only Monochrome drawings
Permissions
- No permissions needed at the moment
Tech used
Run locally
- Install the latest Android Studio
- Enable developer tools on a physical device or make a new virtual device in Android Device Manager Run your app
Data
classDiagram
Player --> Entry
Game <-- "1..*" Entry
class Game {
+UUID Id
+Entry[] Entries
}
class Player{
+String UserName
+UUID Id
}
class Entry{
+int Sequence
+String? Sentence
+ByteArray? Drawing [gzip Json object]
+Player Player
}