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.
16 lines
441 B
16 lines
441 B
//========= Copyright © 1996-2009, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Shared variables, etc. for the paint gun.
|
|
//
|
|
//=============================================================================//
|
|
#ifndef WEAPON_PAINTGUN_SHARED_H
|
|
#define WEAPON_PAINTGUN_SHARED_H
|
|
|
|
enum PaintAmmoType
|
|
{
|
|
PAINT_AMMO_NONE,
|
|
PAINT_AMMO_GLOBAL,
|
|
PAINT_AMMO_PER_TYPE
|
|
};
|
|
|
|
#endif // ifndef WEAPON_PAINTGUN_SHARED_H
|