blob: bc9c0bd4dfd99c82fd6d97e2f7413d4e75f79698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
{
}
};
|