mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
21 lines
279 B
C++
21 lines
279 B
C++
#include "menubug.h"
|
|
|
|
|
|
|
|
MenuBug::MenuBug()
|
|
{
|
|
|
|
}
|
|
|
|
void MenuBug::RightDown(Point pt, dword keyflags)
|
|
{
|
|
MenuBar menu;
|
|
menu.Add("Pokus", Callback());
|
|
menu.Execute(pt + GetScreenView().TopLeft());
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
MemoryWatch(0x10408C8);
|
|
MenuBug().Run();
|
|
}
|