Unravel Engine C++ Reference
Loading...
Searching...
No Matches
style_sheet.hpp
Go to the documentation of this file.
1#pragma once
2
4
7
8namespace unravel
9{
13
14void save_to_file(const std::string& absolute_path, const style_sheet::sptr& obj);
15void save_to_file_bin(const std::string& absolute_path, const style_sheet::sptr& obj);
16void load_from_file(const std::string& absolute_path, style_sheet::sptr& obj);
17void load_from_file_bin(const std::string& absolute_path, style_sheet::sptr& obj);
18
19} // namespace unravel
void save_to_file_bin(const std::string &absolute_path, const animation_clip &obj)
void load_from_file(const std::string &absolute_path, animation_clip &obj)
void save_to_file(const std::string &absolute_path, const animation_clip &obj)
void load_from_file_bin(const std::string &absolute_path, animation_clip &obj)
#define REFLECT_EXTERN(cls)
Definition reflection.h:120
#define LOAD_EXTERN(cls)
#define SAVE_EXTERN(cls)
Represents a UI style sheet asset (CSS/RCSS document).
Definition style_sheet.h:26
std::shared_ptr< style_sheet > sptr
Shared pointer to a style sheet.
Definition style_sheet.h:27