This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/debug/DebugInfo.h
Tamás Bálint Misius 0179cefc78
Flatten include trees
2019-04-20 15:36:11 +02:00

15 lines
394 B
C++

#pragma once
#include "gui/interface/Point.h"
class DebugInfo
{
public:
DebugInfo(unsigned int id):debugID(id) { }
virtual ~DebugInfo() { }
unsigned int debugID;
virtual void Draw() {}
// currentMouse doesn't belong but I don't want to create more hooks at the moment
virtual bool KeyPress(int key, int scan, bool shift, bool ctrl, bool alt, ui::Point currentMouse) { return true; }
};