Closed vrimar closed 1 year ago
Is there a way to serialize enum class props without a custom TypeHandler?
Example:
enum class MyEnum : int { } struct MyObject { MyEnum myEnum; JS_OBJ(myEnum); }
Apologies, looks like JS_ENUM does what I need!
Is there a way to serialize enum class props without a custom TypeHandler?
Example: