csgo-2018-source/public/assetpickerdefs.h
2021-07-24 21:11:47 -07:00

24 lines
678 B
C

//===================== Copyright (c) Valve Corporation. All Rights Reserved. ======================
//
// Structures used when invoking the asset picker.
//
//==================================================================================================
#ifndef ASSETPICKERDEFS_H
#define ASSETPICKERDEFS_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Used when providing the asset picker with a list of used assets.
//-----------------------------------------------------------------------------
struct AssetUsageInfo_t
{
CUtlString m_assetName;
int m_nTimesUsed;
};
#endif // ASSETPICKERDEFS_H