mirror of
https://github.com/daemon32/tickrate_enabler.git
synced 2025-12-06 18:08:32 +00:00
- Updated sourcehook_source to the latest css branch
- Created a VS2013 project/solution for tickrate_enabler
30 lines
479 B
C++
30 lines
479 B
C++
/* ======== SourceHook ========
|
|
* Copyright (C) 2004-2010 Metamod:Source Development Team
|
|
* No warranties of any kind
|
|
*
|
|
* License: zlib/libpng
|
|
*
|
|
* Author(s): Pavol "PM OnoTo" Marko
|
|
* ============================
|
|
*/
|
|
|
|
#ifndef __SOURCEHOOK_IMPL_CLEANUPTASK_H__
|
|
#define __SOURCEHOOK_IMPL_CLEANUPTASK_H__
|
|
|
|
|
|
namespace SourceHook
|
|
{
|
|
namespace Impl
|
|
{
|
|
class ICleanupTask
|
|
{
|
|
public:
|
|
virtual void CleanupAndDeleteThis() = 0;
|
|
};
|
|
}
|
|
}
|
|
|
|
// __SOURCEHOOK_IMPL_CLEANUPTASK_H__
|
|
#endif
|
|
|