CYD-UI
A C++ library for building native graphic user interfaces
Loading...
Searching...
No Matches
images.cppm
Go to the documentation of this file.
1// Copyright (c) 2024, Víctor Castillo Agüero.
2// SPDX-License-Identifier: GPL-3.0-or-later
3
5
6import std;
7
8export namespace cydui::graphics::images {
9 struct image_t {
10 std::string path;
11 };
12}