




#include "DxLib.h"
int WINAPI WinMain(DXLIB)
{
ChangeWindowMode(TRUE); // ウインドウモードの指定
DxLib_Init(); // DXライブラリの初期化
// BMP画像の表示
LoadGraphScreen( 0 , 0 , "test1.bmp" , TRUE ) ;
WaitKey() ; // キーの入力待ち
DxLib_End() ; // DXライブラリ終了処理
return 0 ; // ソフトの終了
}
|
