Initial push to repo

This commit is contained in:
2026-07-03 19:56:31 +02:00
commit 4cf4176d57
1305 changed files with 43455 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "BookItem.h"
void UBookItem::SetupBook(const FBookDataStructRow& Row, int32 InID)
{
ItemCategory = EItemCategory::Book;
ItemId = InID;
ItemName = Row.ItemName;
ItemDescription = Row.ItemDescription;
BookCategory = Row.BookCategory;
BookSubCategory = Row.BookSubCategory;
Price = Row.Price;
PublicationDate = Row.PublicationDate;
Author = Row.Author;
PageNumber = Row.PageNumber;
}