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
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.16; // (10M optimization runs) | |
| interface MonacoInterface { | |
| struct CarData { | |
| uint32 balance; // Where 0 means the car has no money. | |
| uint32 speed; // Where 0 means the car isn't moving. | |
| uint32 y; // Where 0 means the car hasn't moved. | |
| Car car; | |
| } |