Download this source code in text format (Utility.h)
/***********************************************************
* WindowMud - Window Mud Server *
* File: Utility.h *
* Usage: Defines the Utility class *
* *
* No warranty is given or implied. *
* There is no license associated with this code. *
* There are no restrictions on the use of this code. *
* This code may be used in any way the reader wishes. *
* No credit or credits are given and none are required. *
* The reader may take this code and claim they wrote it. *
************************************************************/
#ifndef UTILITY_H
#define UTILITY_H
/***********************************************************
* Includes *
************************************************************/
#include "Config.h"
/***********************************************************
* Define Utility class *
************************************************************/
class Utility
{
// Public functions static
public:
static void BlowUp();
};
#endif