Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 351 Bytes

TODO.md

File metadata and controls

6 lines (5 loc) · 351 Bytes

Steps to perform

  1. Implement a Game: Game, Round, Dealer, Judger, Player. Inherit classes in rlcard/games/base.py
  2. Wrap game with environment. Inherit Env from rlcard/envs/env.py. Need to implement: _extract_state, _decode_action, get_payoffs.
  3. Register game by updating rlcard/envs/init.py
  4. Test by running rlcard.make('getaway')