mirror of
https://github.com/luanti-org/luanti.git
synced 2025-11-05 01:35:29 +01:00
22 lines
678 B
C++
22 lines
678 B
C++
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#pragma once
|
|
|
|
namespace video
|
|
{
|
|
|
|
//! structure for holding data describing a driver and operating system specific data.
|
|
/** This data can be retrieved by IVideoDriver::getExposedVideoData(). Use this with caution.
|
|
This only should be used to make it possible to extend the engine easily without
|
|
modification of its source. Note that this structure does not contain any valid data, if
|
|
you are using the software or the null device.
|
|
*/
|
|
struct SExposedVideoData
|
|
{
|
|
char dummy = 0;
|
|
};
|
|
|
|
} // end namespace video
|