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 @@
#ifndef _INCLUDED_CAMPAIGN_MAP_SEARCH_LIGHTS_H
#define _INCLUDED_CAMPAIGN_MAP_SEARCH_LIGHTS_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
#include <vgui_controls/Panel.h>
#define ASW_NUM_SEARCH_LIGHTS 4
// draws oscillating search lights over the campaign map
class CampaignMapSearchLights : public vgui::Panel
{
DECLARE_CLASS_SIMPLE( CampaignMapSearchLights, vgui::Panel );
public:
CampaignMapSearchLights(vgui::Panel *parent, const char *panelName);
virtual void Paint();
void PaintSearchLights();
void PaintSearchLight(int x, int y, float angle);
static int s_nSearchLightTexture;
};
#endif // _INCLUDED_CAMPAIGN_MAP_SEARCH_LIGHTS_H