* Get the animated state of a tile. * @param t The tile. * @returns true iff the tile is animated. */
| 28 | * @returns true iff the tile is animated. |
| 29 | */ |
| 30 | inline AnimatedTileState GetAnimatedTileState(Tile t) |
| 31 | { |
| 32 | return static_cast<AnimatedTileState>(GB(t.m6(), 0, 2)); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Set the animated state of a tile. |
no test coverage detected