[블록체인] 크립토좀비 - 4. 좀비 전투 시스템
pragma solidity ^0.4.19;import "./zombiefactory.sol";contract KittyInterface { function getKitty(uint256 _id) external view returns ( bool isGestating, bool isReady, uint256 cooldownIndex, uint256 nextActionAt, uint256 siringWithId, uint256 birthTime, uint256 matronId, uint256 sireId, uint256 generation, uint256 genes );}contract ZombieFeeding is ZombieFactory { ..