PrevUpHomeNext

method: shared_device.tuple()


Get a tuple which contains the following pointer objects from the shared device:

Calling Sig:

auto [video, scene, gui, fs, cursor, timer] = shared_device.tuple();
auto [video, scene, gui, _, _, _] = shared_device.tuple();	// c++26 feature

Return type:

std::tuple<
	dcpp::video::IVideoDriver *,
	dcpp::scene::ISceneManager *,
	dcpp::gui::IGUIEnvironment *,
	dcpp::io::IFileSystem *,
	dcpp::gui::ICursorControl *,
	dcpp::ITimer *
>

Note:

This method is experimental, it might be changed.

See Also

method: shared_device.tuple()

class: dcpp::shared_device

Back

Up

c++

Duckcpp

cppfx.xyz


PrevUpHomeNext