Skip to content

Commit

Permalink
Fix AOT stripping
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Feb 5, 2025
1 parent 68cb50a commit 982744c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Assets/Scripts/Cgs/AotTypeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public void Awake()
cardGame.CardImageFileType = string.Empty;
cardGame.CardImageProperty = string.Empty;
cardGame.CardImageUrl = string.Empty;
cardGame.CardNameBackIdentifier = string.Empty;
cardGame.CardNameIdentifier = string.Empty;
cardGame.CardNameIsUnique = false;
cardGame.CardPrimaryProperty = string.Empty;
Expand All @@ -61,6 +62,8 @@ public void Awake()
propertyDef.DisplayEmptyFirst = false;
propertyDef.Name = string.Empty;
propertyDef.Type = PropertyType.String;
propertyDef.BackName = string.Empty;
propertyDef.FrontName = string.Empty;
var propertyDefValuePair = new PropertyDefValuePair();
propertyDefValuePair.Def = propertyDef;
propertyDefValuePair.Value = string.Empty;
Expand Down

0 comments on commit 982744c

Please sign in to comment.