mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 14:12:16 +00:00
20 lines
552 B
INI
20 lines
552 B
INI
|
/******************************************\
|
||
|
Doom Builder Actions Configuration
|
||
|
\******************************************/
|
||
|
|
||
|
// This just defines which actions there are and what description they have
|
||
|
// The source code will bind to these actions with delegates (function pointers)
|
||
|
|
||
|
newmap
|
||
|
{
|
||
|
title = "File: New Map";
|
||
|
description = "Starts with a new, empty workspace to begin drawing a map from scratch.";
|
||
|
}
|
||
|
|
||
|
openmap
|
||
|
{
|
||
|
title = "File: Open Map";
|
||
|
description = "Opens an existing map from WAD file for viewing or modifying.";
|
||
|
}
|
||
|
|