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.
26 lines
504 B
26 lines
504 B
5 years ago
|
//========= Copyright 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,
|
||
|
NUM_PRECIPITATION_TYPES
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // PRECIPITATION_SHARED_H
|