mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 12:51:30 +00:00
19 lines
552 B
INI
19 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.";
|
|
}
|
|
|