mirror of
https://github.com/thug1src/thug.git
synced 2024-11-30 03:56:37 +00:00
58 lines
2.3 KiB
C
58 lines
2.3 KiB
C
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment **
|
|
** **
|
|
** Copyright (C) 2000 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: <project> **
|
|
** **
|
|
** Module: <module> **
|
|
** **
|
|
** File name: <filename>.h **
|
|
** **
|
|
** Created: xx/xx/xx - xxx **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __<FILENAME>_H
|
|
#define __<FILENAME>_H
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Clase Definitions **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Declarations **
|
|
*****************************************************************************/
|
|
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
|
|
/*****************************************************************************
|
|
** Public Declarations **
|
|
*****************************************************************************/
|
|
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
#endif // __<FILENAME>_H
|