Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 565 Bytes

File metadata and controls

25 lines (20 loc) · 565 Bytes

天気予報

天気予報
気象庁サイト から最新の天気予報図をダウンロードして表示します。

# include <Siv3D.hpp>

void Main()
{
	HTTPClient client;

	ByteArray data;

	if (!client.download(L"http://www.jma.go.jp/jp/yoho/images/000_telop_tomorrow.png", data))
	{
		return;
	}

	const Texture texture(std::move(data));

	while (System::Update())
	{
		texture.draw();
	}
}