mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-26 08:06:58 +00:00
21 lines
378 B
C
21 lines
378 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef FX_DOD_BLOOD_H
|
|
#define FX_DOD_BLOOD_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
void FX_DOD_BloodSpray(
|
|
const Vector &origin,
|
|
const Vector &normal,
|
|
float flDamage );
|
|
|
|
|
|
#endif // FX_DOD_BLOOD_H
|