我需要从不同的类更改多个 Game1 变量。我一直在这样做:
public class Game1 : Microsoft.Xna.Framework.Game
{
public int test1;
public int test2;
}
public class Player
{
public Player(Game1 game)
{
game.test1 = 5;
game.test2 = 10;
}
}
这是不好的做法,如果是这样,还有其他方法吗?