アットウィキロゴ

XNA07

using Microsoft.Xna.Framework;

public class Test : Game
{
    public Test()
    {
        Window.Title = "sdf";
    }

    protected override void Initialize()
    {
        Window.Title += "abc";
        base.Initialize();
    }

    static void Main(string[] args)
    {
        using (Game game01= new Test())
        {
            game01.Window.Title += "do";
            game01.Run();
        }
    }
}
最終更新:2011年01月30日 14:07