allartprotocol / unity-solana-wallet

The First Open-Source Unity-Solana Wallet with NFT support
282 stars 128 forks source link

Error: unity-solana-wallet-main\Runtime\codebase\nft\nft_interfaces\iNft.cs(4,20): error CS0106: The modifier 'abstract' is not valid for this item #6

Closed fluffywiggle closed 2 years ago

fluffywiggle commented 2 years ago

unity-solana-wallet-main\Runtime\codebase\nft\nft_interfaces\iNft.cs(4,20): error CS0106: The modifier 'abstract' is not valid for this item

ADEELHAMZA40 commented 2 years ago

Also have same issue kindly help to resolve it

xrami247 commented 2 years ago

Fixed this and put in a pull request, you just need to remove abstract and public where it's complaining. Interfaces don't like member modifiers (before C# 8.0)

EDIT: Make sure you're using .Net 4.x in Unity