Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

i'm getting this error

A topic by youraveagewirdo created Aug 26, 2019 Views: 254 Replies: 2
Viewing posts 1 to 2

i'm getting this error, error CS1585: Member modifier 'static' must precede the member type and name please can I get some help this is the line of code,   privite static GameMaster instance;

You misspelled "private". It's basically saying you can't declare a type (called "privite") before you set it as static. Just change it to "private" and that should fix it

thanks did not notice that