Skip to content

Commit

Permalink
Try to fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
sabianroberts committed Sep 25, 2023
1 parent 3976eb5 commit dd1d48d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions binary/dlls/aghideandseek.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

//#if !defined(AFX_AGARENA_H__1929C55A_3034_4C89_8398_1F8243B83499__INCLUDED_)
#define AFX_AGARENA_H__1929C55A_3034_4C89_8398_1F8243B83499__INCLUDED_
#ifndef HIDEANDSEEK_H
#define HIDEANDSEEK_H

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000



class AgHideandseek
{
typedef list<int> AgWaitList;
Expand Down Expand Up @@ -44,8 +48,8 @@ class AgHideandseek
void ClientDisconnected(CBasePlayer* pPlayer);
void ClientConnected(CBasePlayer* pPlayer);

// bool CanTakeDamage();
//bool CanHaveItem();
bool CanTakeDamage();
bool CanHaveItem();

};

Expand All @@ -66,7 +70,8 @@ inline CBasePlayer* AgHideandseek::GetSeeker()
return NULL;
};

/*


inline bool AgHideandseek::CanTakeDamage()
{
return Playing == m_Status || PlayerDied == m_Status;
Expand All @@ -76,7 +81,7 @@ inline bool AgHideandseek::CanHaveItem()
{
return Spawning == m_Status;
}
*/


//#endif // !defined(AFX_AGARENA_H__1929C55A_3034_4C89_8398_1F8243B83499__INCLUDED_)
#endif // HIDEANDSEEK_H

0 comments on commit dd1d48d

Please sign in to comment.