47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
|
#include "imgui.h"
|
||
|
#include "imgui-SFML.h"
|
||
|
|
||
|
#include <SFML/Graphics/RenderWindow.hpp>
|
||
|
#include <SFML/System/Clock.hpp>
|
||
|
#include <SFML/Window/Event.hpp>
|
||
|
#include <SFML/Graphics/CircleShape.hpp>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
sf::RenderWindow window(sf::VideoMode(640, 480), "ImGui + SFML = <3");
|
||
|
window.setFramerateLimit(60);
|
||
|
ImGui::SFML::Init(window);
|
||
|
|
||
|
sf::CircleShape shape(100.f);
|
||
|
shape.setFillColor(sf::Color::Green);
|
||
|
|
||
|
sf::Clock deltaClock;
|
||
|
while (window.isOpen()) {
|
||
|
sf::Event event;
|
||
|
while (window.pollEvent(event)) {
|
||
|
ImGui::SFML::ProcessEvent(event);
|
||
|
|
||
|
if (event.type == sf::Event::Closed) {
|
||
|
window.close();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ImGui::SFML::Update(window, deltaClock.restart());
|
||
|
|
||
|
ImGui::ShowTestWindow();
|
||
|
|
||
|
ImGui::Begin("Hello, world!");
|
||
|
ImGui::Button("Look at this pretty button");
|
||
|
ImGui::End();
|
||
|
|
||
|
window.clear();
|
||
|
window.draw(shape);
|
||
|
ImGui::SFML::Render(window);
|
||
|
window.display();
|
||
|
}
|
||
|
|
||
|
ImGui::SFML::Shutdown();
|
||
|
|
||
|
return 0;
|
||
|
}
|