Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//========= Copyright <EFBFBD> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#ifndef PRECIPITATION_SHARED_H
|
|
|
|
|
#define PRECIPITATION_SHARED_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Types of precipitation
|
|
|
|
|
enum PrecipitationType_t
|
|
|
|
|
{
|
|
|
|
|
PRECIPITATION_TYPE_RAIN = 0,
|
|
|
|
|
PRECIPITATION_TYPE_SNOW,
|
|
|
|
|
PRECIPITATION_TYPE_ASH,
|
|
|
|
|
PRECIPITATION_TYPE_SNOWFALL,
|
|
|
|
|
PRECIPITATION_TYPE_PARTICLERAIN,
|
|
|
|
|
PRECIPITATION_TYPE_PARTICLEASH,
|
|
|
|
|
PRECIPITATION_TYPE_PARTICLERAINSTORM,
|
|
|
|
|
PRECIPITATION_TYPE_PARTICLESNOW,
|
|
|
|
|
NUM_PRECIPITATION_TYPES
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PRECIPITATION_SHARED_H
|