Complete Homer implementation

This commit is contained in:
William Entriken 2018-02-20 17:39:55 -05:00 committed by GitHub
parent 12fe0b505c
commit 1947d2f676
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -218,6 +218,9 @@ contract Homer is ERC165, Simpson {
interfaceID == this.is2D.selector
^ this.skinColor.selector; // Simpson
}
function is2D() external returns (bool){}
function skinColor() external returns (string){}
}
```