Files
shweets-sim/src/state/play/debug.hpp
2026-04-01 02:08:50 -04:00

21 lines
335 B
C++

#pragma once
#include "../../entity/character.hpp"
#include "../../entity/cursor.hpp"
#include "item_manager.hpp"
#include "text.hpp"
#include <imgui.h>
namespace game::state::play
{
class Debug
{
public:
bool isBoundsDisplay{};
void update(entity::Character&, entity::Cursor&, ItemManager&, Canvas&, Text&);
};
}