Euphoria
load.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 
5 #include <memory>
6 
7 namespace eu::io
8 {
9  struct FileSystem;
10  struct FilePath;
11 }
12 
13 namespace eu::render
14 {
15  struct TextureCache;
16  struct FontCache;
17 }
18 
19 namespace eu::gui
20 {
21  struct Root;
22 }
23 
24 
25 namespace eu::gui
26 {
27  bool
28  load_gui
29  (
30  Root* root,
31  io::FileSystem* fs,
32  render::FontCache* font,
33  const io::FilePath& path,
34  render::TextureCache* cache
35  );
36 }
bool load_gui(Root *root, io::FileSystem *fs, render::FontCache *font, const io::FilePath &path, render::TextureCache *cache)
Definition: load.cc:308
Definition: enum.h:8