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
+32
View File
@@ -0,0 +1,32 @@
#include "cbase.h"
#include "WrappedLabel.h"
#include <KeyValues.h>
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
using namespace vgui;
WrappedLabel::WrappedLabel(Panel *parent, const char *panelName, const char *text) :
Label(parent, panelName, text)
{
KeyValues *kv = new KeyValues( "Dummy", "wrap", 1);
Label::ApplySettings(kv);
kv->deleteThis();
}
WrappedLabel::WrappedLabel(Panel *parent, const char *panelName, const wchar_t *wszText) :
Label(parent, panelName, wszText)
{
KeyValues *kv = new KeyValues( "Dummy", "wrap", 1);
Label::ApplySettings(kv);
kv->deleteThis();
}
WrappedLabel::~WrappedLabel()
{
}