An open API service indexing awesome lists of open source software.

https://github.com/nor0x/rps

Rock, Paper, Scissors (Lizard, Spock) in UWP
https://github.com/nor0x/rps

csharp excercise uwp

Last synced: 3 months ago
JSON representation

Rock, Paper, Scissors (Lizard, Spock) in UWP

Awesome Lists containing this project

README

        

My implementation of RPS / RPSLS

possible refactorings
- put XAML styles into Resources or ResourceDictionaries
- reading strings from a config file
- a general function for reading from a JSON file, insted of having two functions that do the same
- subclass Player for different player types and more granularity
- showing a dialog or other UI notification if an exception got catched
- async file reading handling
- if-else cleanup (i.e. one liner) but it's easier to reading
- adaptive ui
- always present current score on ui, not after the match
- more unit tests
- ...