Provides an easy to use template for turn based games logic. You just need to implement 3 functions and provide some enums. While the main "entity" is called Card, a Card can be anything.
```rust type MyMsg = ...
enum MyEvent { GameStart, CardPlayed(CardID), PlayerTurnedBlue(PlayerID), GameEnd, ... }
enum MyTrigger { YouHaveWonTheGame(PlayerID), FlipTheTable(PlayerID), ... }
enum MyEffect { PlusOneAllStats(CardID), TurnPlayerBlue(PlayerID), ... }
// Similar effect layers to Magic The Gathering
enum MyEffectLayer { AttBase, Control, Mimic, Text, Flag, Ability, AttSet, AttAdd, AttMul, AttDiv, AttSub, AttSwap, React, ... }
enum MyAttName { PlayerColor, Wealth, Health, ... }
enum MyDeckType { Hand, Discard, Remove, Sideboard, Main, ... }
enum MyCardType { PocketSand, AntsOnFire, QueenOfDarts, ... }
enum MyPhaseType { Untap, Upkeep, Draw, Main, Fight, Die, ... }
type MyGame = TBG
impl TurnBasedGame
```