2d 3d gui games solidity contracrt load from metamask wallet by contract address

3d 2d Gui interface development for interactive games in solidity language by playing the game you would load contract to MetaMask wallet and the result would be play game loaded from MetaMask by 3d 2d GUI game contract address!
Is there already GUI development going into smart contracts im new to coding?
contract when loaded would pop up as its own applicaio process on the computer.

To play solidity smart contract 2d 3d games using gui created with in remix.ethreum using solidity/C programminng1
loaded from MetaMask by 2d 3d gui game contract address!

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract YesNoGame {
address public owner;
bool public answer;

constructor() {
    owner = msg.sender;
}

function setAnswer(bool _answer) public {
    require(msg.sender == owner, "Only the owner can set the answer.");
    answer = _answer;
}

function guess(bool _guess) public view returns (bool) {
    return _guess == answer;
}

}
something like that just with a gui?

Check out

If you search for GUI there are some options in that Medium article.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.