mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
12 lines
280 B
C++
12 lines
280 B
C++
#include "presentparameters-dx.hpp"
|
|
#include "gdevicemanager-dx.hpp"
|
|
|
|
namespace xna {
|
|
PresentationParameters::PresentationParameters() :
|
|
backBufferWidth(GraphicsDeviceManager::DefaultBackBufferWidth),
|
|
backBufferHeight(GraphicsDeviceManager::DefaultBackBufferHeight) {
|
|
}
|
|
}
|
|
|
|
|