Skip to content

Commit

Permalink
Add category to all properties. Close #119
Browse files Browse the repository at this point in the history
  • Loading branch information
v.alyamkin committed Sep 9, 2019
1 parent 87af2f7 commit bf5b4eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Source/XsollaStore/Public/XsollaStoreController.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class XSOLLASTORE_API UXsollaStoreController : public UObject
FString PengindPaystationUrl;

/** Loaded currency library asset */
UPROPERTY(BlueprintReadOnly)
UPROPERTY(BlueprintReadOnly, Category = "Xsolla|Currency")
UDataTable* CurrencyLibrary;

public:
Expand Down
14 changes: 7 additions & 7 deletions Source/XsollaStore/Public/XsollaStoreCurrencyFormat.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ struct XSOLLASTORE_API FXsollaStoreCurrencySymbol
{
GENERATED_USTRUCT_BODY()

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
FString grapheme;

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
FString format;

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
bool rtl;

FXsollaStoreCurrencySymbol()
Expand All @@ -32,16 +32,16 @@ struct XSOLLASTORE_API FXsollaStoreCurrency : public FTableRowBase
{
GENERATED_USTRUCT_BODY()

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
FString name;

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
FString description;

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
int32 fractionSize;

UPROPERTY(EditAnywhere, BlueprintReadWrite)
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
FXsollaStoreCurrencySymbol symbol;

FXsollaStoreCurrency()
Expand Down

0 comments on commit bf5b4eb

Please sign in to comment.