Initial commit

This commit is contained in:
Cesar Gimenes
2021-09-18 14:10:47 -03:00
parent 46f2228e15
commit e2607a94c0
131 changed files with 5312 additions and 0 deletions

29
nkosrc4/Neko98/DesktopPet.h Executable file
View File

@@ -0,0 +1,29 @@
// DesktopPet.h: interface for the CDesktopPet class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DESKTOPPET_H__A69EBAA3_385D_11D2_9FF9_00001C192944__INCLUDED_)
#define AFX_DESKTOPPET_H__A69EBAA3_385D_11D2_9FF9_00001C192944__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include "Pet.h"
#include "DesktopHack.h"
class CDesktopPet : public CDesktopHack, virtual public CPet
{
public:
CDesktopPet();
virtual ~CDesktopPet();
virtual void DrawOnTarget( int x, int y, HICON hIcon );
protected:
int m_nUpdateHWndCounter;
virtual void Erase();
virtual void Draw( int nImage );
};
#endif // !defined(AFX_DESKTOPPET_H__A69EBAA3_385D_11D2_9FF9_00001C192944__INCLUDED_)