Add trailing commas to enums

This commit is contained in:
Aaron Franke
2020-10-30 03:24:51 -04:00
parent 4bba07257a
commit 159adfd421
5 changed files with 11 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ namespace AndroidInAppPurchasesWithCSharp.GodotGooglePlayBilling
public enum PurchaseType
{
InApp,
Subs
Subs,
}
public class GooglePlayBilling : Node

View File

@@ -9,7 +9,7 @@ namespace AndroidInAppPurchasesWithCSharp.GodotGooglePlayBilling
{
UnspecifiedState = 0,
Purchased = 1,
Pending = 2
Pending = 2,
}
public class Purchase