|
// SPDX-License-Identifier: Proprietary
|
|
pragma solidity ^0.7.2;
|
|
|
|
interface IControl {
|
|
function creator() external view returns (address);
|
|
function changeCreator(address payable _newCreator) external;
|
|
function mothership() external view returns (address);
|
|
} |