mhluska / blackjack-simulator

🃏 Realistic blackjack simulator (practice card counting using Hi-Lo and calculate EV for any table conditions)
https://mhluska.github.io/blackjack-atlas
MIT License
51 stars 14 forks source link

Remove EventEmitter #31

Open mhluska opened 3 years ago

mhluska commented 3 years ago

It's too dynamic for AssemblyScript and isn't really needed now that we advance the game with a DFA. We can just get a full tree of game state after every step with a function call from the outside. After that is removed, we can also remove Proxy code which wouldn't be supported in AS either.