mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-06 16:00:08 +01:00
Add trailing commas to enums
This commit is contained in:
@@ -6,7 +6,7 @@ namespace AndroidInAppPurchasesWithCSharp.GodotGooglePlayBilling
|
||||
public enum PurchaseType
|
||||
{
|
||||
InApp,
|
||||
Subs
|
||||
Subs,
|
||||
}
|
||||
|
||||
public class GooglePlayBilling : Node
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace AndroidInAppPurchasesWithCSharp.GodotGooglePlayBilling
|
||||
{
|
||||
UnspecifiedState = 0,
|
||||
Purchased = 1,
|
||||
Pending = 2
|
||||
Pending = 2,
|
||||
}
|
||||
|
||||
public class Purchase
|
||||
|
||||
Reference in New Issue
Block a user