mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-05 03:47:20 +02:00
15 lines
178 B
C
15 lines
178 B
C
|
|
/**
|
||
|
|
* @file set.h
|
||
|
|
* Builder room/object creation and utility headers.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef SET_H
|
||
|
|
#define SET_H
|
||
|
|
|
||
|
|
ACMD(do_rset);
|
||
|
|
ACMD(do_rcreate);
|
||
|
|
ACMD(do_ocreate);
|
||
|
|
ACMD(do_osave);
|
||
|
|
|
||
|
|
#endif
|