blob: 445491deb4f3e6618109dcfb4f8a3aad1b773439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "ui/window.h"
class TestMainWindow : public Window {
// This exists only to hold an OpenGL context open for the duration of the tests,
// in the same way a real main window would always exist.
public:
TestMainWindow();
void
tick(TickDuration) override
{
}
};
|