I'm looking through Exit Scam's game code. But there are some lines that I do not understand at all. Contract code
At Line 189: Why is there an address at ...Interface(...);
?
F3DexternalSettingsInterface constant private extSettings = F3DexternalSettingsInterface(0x32967D6c142c2F38AB39235994e2DDF11c37d590);
At Line 196 and 1814: Why are the interface's functions not implemented? Is there any other source code that I'm missing here?
uint256 private rndExtra_ = extSettings.getLongExtra(); // Line 196
...
interface F3DexternalSettingsInterface {
function getFastGap() external returns(uint256);
function getLongGap() external returns(uint256);
function getFastExtra() external returns(uint256);
function getLongExtra() external returns(uint256); //<--Line 1814
}
Thank you and best regards.