1
0
Fork 0

Rename Display to Window.

It makes more sense to be consistent and always call it window.
This commit is contained in:
Henrik Hautakoski 2023-08-22 07:12:47 +02:00
parent 416a71f744
commit 24da7f45e0
33 changed files with 257 additions and 255 deletions

View file

@ -0,0 +1,18 @@
#include <Spectre/Window/WindowDescription.h>
namespace sp {
WindowDescription::WindowDescription() :
mode (),
decoration (WindowDecorate::Default)
{
}
WindowDescription::WindowDescription(DisplayMode mode, unsigned decoration) :
mode (mode),
decoration (decoration)
{
}
} // namespace sp