fix(codegen): Adds default codegen option for save flags. Fixes world load issues. (#707)
This commit is contained in:
parent
3fc2b76468
commit
ca5e9342a0
19 changed files with 204 additions and 109 deletions
|
|
@ -0,0 +1,11 @@
|
|||
using Microsoft.CodeAnalysis;
|
||||
|
||||
namespace SerializationGenerator
|
||||
{
|
||||
public record SerializableFieldSaveFlagMethods
|
||||
{
|
||||
public IMethodSymbol? DetermineFieldShouldSerialize { get; init; }
|
||||
|
||||
public IMethodSymbol? GetFieldDefaultValue { get; init; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue