mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-12 05:22:55 +00:00
24 lines
466 B
C++
24 lines
466 B
C++
//++ BulliT
|
|
|
|
#if !defined(AFX_AGSCORE_H__7014D216_A0B2_432F_9A67_E54F7D3D6B1D__INCLUDED_)
|
|
#define AFX_AGSCORE_H__7014D216_A0B2_432F_9A67_E54F7D3D6B1D__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class AgScore
|
|
{
|
|
public:
|
|
AgScore();
|
|
virtual ~AgScore();
|
|
|
|
int m_iFrags;
|
|
int m_iDeaths;
|
|
bool m_bIngame;
|
|
};
|
|
|
|
#endif // !defined(AFX_AGSCORE_H__7014D216_A0B2_432F_9A67_E54F7D3D6B1D__INCLUDED_)
|
|
|
|
//-- Martin Webrant
|