mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-27 15:24:28 +00:00
18 lines
344 B
C
18 lines
344 B
C
|
#ifndef _INCLUDED_C_ASW_ORDER_ARROW_H
|
||
|
#define _INCLUDED_C_ASW_ORDER_ARROW_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
class C_ASW_Order_Arrow : public C_BaseAnimating
|
||
|
{
|
||
|
typedef C_BaseAnimating BaseClass;
|
||
|
public:
|
||
|
|
||
|
static C_ASW_Order_Arrow* CreateOrderArrow();
|
||
|
void RefreshArrow();
|
||
|
|
||
|
float m_fCreatedTime;
|
||
|
};
|
||
|
|
||
|
#endif // _INCLUDED_C_ASW_ORDER_ARROW_H
|