Fling Engine  0.00.1
Fling Engine is a game engine written in Vulkan
Name.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace Fling
6 {
7  struct NameComponent
8  {
9  std::string Name;
10 
11  template<class Archive>
12  void serialize(Archive & t_Archive)
13  {
14  t_Archive(
15  cereal::make_nvp("Name", Name)
16  );
17  }
18  };
19 } // namespace Fling
Definition: Name.hpp:7
void serialize(Archive &t_Archive)
Definition: Name.hpp:12
Definition: Engine.h:29
std::string Name
Definition: Name.hpp:9