Files
RPG_Game/Documentation/ItemSystem/ClassDiagramm.md
T
2025-08-15 10:40:09 +02:00

417 B

Item System

classDiagram

class Item{
    <<abstract>>
    
}


class ItemStructure{
    <<struct>>
    Name : Text
    IsStackable : Bool
    Description : Text
    IsConsumable : Text
    MaxStackSize : Int
    Durability : Float
    BuyValue : Int
    SellValue : Int
    Weight : Int
    Thumbnail : Texture_2D
    Item_Type : ItemType
    rarety  : Rarety
    DealerInterest : DealerInterests
}