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
+27
View File
@@ -0,0 +1,27 @@
#ifndef WRAPPEDLABEL_H
#define WRAPPEDLABEL_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
#include <vgui_controls/Label.h>
// a vgui label that defaults to wrapped text
namespace vgui
{
class WrappedLabel : public Label
{
DECLARE_CLASS_SIMPLE( WrappedLabel, Label );
public:
WrappedLabel(Panel *parent, const char *panelName, const char *text);
WrappedLabel(Panel *parent, const char *panelName, const wchar_t *wszText);
virtual ~WrappedLabel();
};
} // namespace vgui
#endif // WRAPPEDLABEL_H