upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
@@ -0,0 +1,28 @@
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose: Dialog for selecting stim music
//
// $NoKeywords: $
//===========================================================================//
#ifndef STIMMUSICSELECTDIALOG_H
#define STIMMUSICSELECTDIALOG_H
#ifdef _WIN32
#pragma once
#endif
#include "vgui_controls/FileOpenDialog.h"
class StimMusicSelectDialog : public vgui::FileOpenDialog
{
DECLARE_CLASS_SIMPLE( StimMusicSelectDialog, vgui::FileOpenDialog );
public:
// The context keyvalues are added to all messages sent by this dialog if they are specified
StimMusicSelectDialog( Panel *parent, const char *title, vgui::FileOpenDialogType_t type, KeyValues *pContextKeyValues = 0 );
MESSAGE_FUNC_CHARPTR( OnFileSelected, "FileSelected", fullpath );
};
#endif // STIMMUSICSELECTDIALOG_H