Files
MacroLibX/runtime/Includes/Core/Handles.h
2024-12-20 01:19:15 +01:00

23 lines
272 B
C

#ifndef __MLX_HANDLES__
#define __MLX_HANDLES__
extern "C"
{
struct mlx_context_handler
{
mlx::NonOwningPtr<mlx::Application> app;
};
struct mlx_window_handler
{
int id;
};
struct mlx_image_handler
{
mlx::NonOwningPtr<mlx::Texture> texture;
};
}
#endif