Skip to content

TheBugEater/BytePack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BytePack

Reflection and Serialization Library Created from Scratch

You can easily make any C++ Class Reflected by adding few macros to your code.

Example:

class Test : public BPObject
{
  BP_REFLECT(Test)

  uint64 ID;
  float floatVal;
};

BP_BEGIN_CLASS(Test, BPObject)
.Property(&Test::ID, "id", "An Integer for Saving the ID", EPropertyFlags::ReadWrite)
.Property(&Test::floatVal, "floatVal", "A Float Value", EPropertyFlags::ReadWrite)
.Build()
BP_END_CLASS(Test)

About

Reflection and Serialization Library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published