function target(StdStorage storage self, address _target) internal returns (StdStorage storage);
Sets the address of the contract (required).
// function playerCount() public view returns (uint256) {
uint256 slot = stdstore
.target(address(game))
.sig(game.playerCount.selector)
.find();