mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 18:50:13 +01:00
Added some missed .h files.
This commit is contained in:
parent
7e2be30621
commit
9945fc2d02
10 changed files with 735 additions and 0 deletions
50
src/spec_procs.h
Normal file
50
src/spec_procs.h
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
* @file spec_procs.h
|
||||
* Header file for special procedure modules. This file groups a lot of the
|
||||
* legacy special procedures found in spec_procs.c and castle.c.
|
||||
*
|
||||
* Part of the core tbaMUD source code distribution, which is a derivative
|
||||
* of, and continuation of, CircleMUD.
|
||||
*
|
||||
* All rights reserved. See license for complete information.
|
||||
* Copyright (C) 1993, 94 by the Trustees of the Johns Hopkins University
|
||||
* CircleMUD is based on DikuMUD, Copyright (C) 1990, 1991.
|
||||
*
|
||||
*/
|
||||
#ifndef _SPEC_PROCS_H_
|
||||
#define _SPEC_PROCS_H_
|
||||
|
||||
/*****************************************************************************
|
||||
* Begin Functions and defines for castle.c
|
||||
****************************************************************************/
|
||||
void assign_kings_castle(void);
|
||||
|
||||
/*****************************************************************************
|
||||
* Begin Functions and defines for spec_assign.c
|
||||
****************************************************************************/
|
||||
void assign_mobiles(void);
|
||||
void assign_objects(void);
|
||||
void assign_rooms(void);
|
||||
|
||||
/*****************************************************************************
|
||||
* Begin Functions and defines for spec_procs.c
|
||||
****************************************************************************/
|
||||
/* Utility functions */
|
||||
void sort_spells(void);
|
||||
void list_skills(struct char_data *ch);
|
||||
/* Special functions */
|
||||
SPECIAL(guild);
|
||||
SPECIAL(dump);
|
||||
SPECIAL(mayor);
|
||||
SPECIAL(snake);
|
||||
SPECIAL(thief);
|
||||
SPECIAL(magic_user);
|
||||
SPECIAL(guild_guard);
|
||||
SPECIAL(puff);
|
||||
SPECIAL(fido);
|
||||
SPECIAL(janitor);
|
||||
SPECIAL(cityguard);
|
||||
SPECIAL(pet_shops);
|
||||
SPECIAL(bank);
|
||||
|
||||
#endif /* _SPEC_PROCS_H_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue