What is the easiest way to change the value of a variable in a XNA 4.0 game?
I have a few objects that I want to be able to show/hide (as a programmer not as a user) without rebuilding the game itself. I was trying to do this with XML but it proved to be to advanced for my level of knowledge of XNA. My idea is to have a file that will have a simple structure (name_of_variable1, value_of_variable1, name_of_variable2, value_of_variable2...). Since there is a limited number of variables that I need to change (4 or 5 bool variables - I can hold my drawing methods inside if-else statements and then control their execution with these bool variables); these file(s) will be standardized.
What I want to accomplish is this: when I publish my program, I want to have a file in it's "Content" folder that I can change in any text editor and when I start my program, it reads that file and sets the values of these variables accordingly (there will be only one file, that I will overwrite when necessary).
What is the simplest way to do this?
Thanks