mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-13 05:57:05 +03:00
10 lines
240 B
C++
10 lines
240 B
C++
#pragma once
|
|
#include "gui.h"
|
|
#include "objectslist.h"
|
|
#include <utility>
|
|
|
|
struct ItemEnumPair
|
|
{
|
|
std::pair<GAME_OBJECT_ID, InventoryObjectTypes> m_pair;
|
|
ItemEnumPair(GAME_OBJECT_ID id, InventoryObjectTypes id2) : m_pair { id, id2 } {}
|
|
};
|