Created
April 1, 2020 17:43
-
-
Save alexroan/8866c62d41822a5d3602d77b663fabfd to your computer and use it in GitHub Desktop.
TennisPlayer.sol@3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Author: Alex Roan | |
pragma solidity ^0.5.5; | |
import "./CompetingTennisPlayer.sol"; | |
import "./TrainableTennisPlayer.sol"; | |
contract TennisPlayer is CompetingTennisPlayer, TrainableTennisPlayer { | |
function myPlayers() public view returns (uint[] memory) { | |
return _tokensOfOwner(msg.sender); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment