ヘッダーファイルで宣言した変数は使用できるのに、このような画像のパスや構造体が使用できない理由がわかりません。また、どのようにすれば使用できるか教えていただきたいです。
【Picture.h】
#ifndef PICTURE_H
#define PICTURE_H
#include <DxLib.h>
static int PictureX = 400;
static int PictureY = 400;
static int Handle00 = LoadGraph("画像//音街ウナ立ち絵素材ver1.0.png"); //音街ウナ立ち
#endif
//描画
void Setting_Draw() {
Achieve(Handle00);
DrawFormatString(50, 50, white, "%d", Handle00);
}