Counter Strike : Global Offensive Source Code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//===================== 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
|