blob: 5ee6579c4f72a65f3c1299f54136a47c683fd126 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef SPARK_H
#define SPARK_H
#ifdef _WIN32
#pragma once
#endif
void DoSpark( CBaseEntity *ent, const Vector &location, int nMagnitude, int nTrailLength, bool bPlaySound, const Vector &vecDir );
#endif // SPARK_H
|