aboutsummaryrefslogtreecommitdiffstats
path: root/src/render/WindModifiers.h
blob: 7c2e57bdfd5eae752098c7aa22a33ca4a9bc0904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

class CWindModifiers
{
	CVector m_pos;
	int32 m_type;
public:
	static int32 Number;
	static void RegisterOne(CVector pos, int32 windSourceType);
	static bool FindWindModifier(CVector pos, float *x, float *y);
};