L2Bot2.0/L2BotCore/Domain/DTO/Drop.h
2023-01-16 15:33:32 +04:00

17 lines
283 B
C++

#pragma once
#include <cstdint>
#include <string>
#include "WorldObject.h"
namespace L2Bot::Domain::DTO
{
struct Drop : public WorldObject
{
public:
const uint32_t itemId = 0;
const uint32_t amount = 0;
const std::string name = "";
const std::string iconName = "";
};
}