Skip to content

Commit

Permalink
Merge pull request #72 from dojoengine/fix-member-value-bindgen
Browse files Browse the repository at this point in the history
fix: member value crash due to varaitn idx
  • Loading branch information
Larkooo authored Dec 9, 2024
2 parents d4b9537 + 522467b commit a23f830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Dojo/Runtime/bindings/client/dojo.gen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3341,8 +3341,8 @@ public enum LogicalOperator : int
[CNode(Kind = "Enum")]
public enum MemberValue_Tag : int
{
String = 0,
Primitive = 1
Primitive = 0,
String = 1
}

[CNode(Kind = "Enum")]
Expand Down

0 comments on commit a23f830

Please sign in to comment.