We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SasaGUI.hppをプロジェクトに追加する
SasaGUI.hpp
(Visual Studioの場合)プロジェクトを右クリック→追加→既存の項目→SasaGUI.hppを選択
Main.cppに以下のようにソースを書き足す
#include <Siv3D.hpp> + #include "path/to/SasaGUI.hpp" void Main() { + SasaGUI::GUIManager gui; while(System::Update()) { + gui.frameBegin(); //ここにGUIの処理を書く + gui.frameEnd(); } }
There was an error while loading. Please reload this page.