-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(optional): add a full optional files includer
- moved anvil.simba to the optional directory - added more placeholder stuff to the fairy ring interface
- Loading branch information
Showing
4 changed files
with
553 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
(* | ||
Optional Files | ||
============== | ||
|
||
To include all optional files add to your script after WaspLib: | ||
.. pascal:: {$I WaspLib/optional.simba} | ||
However, this is not really recommended. You should include only the files you really want to use under the "optional" directory. | ||
*) | ||
|
||
{$IFNDEF WL_OSR} | ||
{$I WaspLib/osr.simba} | ||
{$ENDIF} | ||
|
||
{$SCOPEDENUMS ON} | ||
|
||
// The following allows individual include files to compile on their own with just having {$I SRL-T/osr.simba} | ||
// Summary: It includes this file until the current file is reached. | ||
|
||
{$IFNDEF WL_ANVIL_INCLUDED} {$I osr/interfaces/mainscreen/anvil.simba} | ||
{$IFNDEF WL_TANSCREEN_INCLUDED} {$I osr/interfaces/mainscreen/tanscreen.simba} | ||
{$IFNDEF AERO_SILVERSCREEN_INCLUDED} {$I osr/interfaces/mainscreen/silverscreen.simba} | ||
{$IFNDEF AERO_CRAFTSCREEN_INCLUDED} {$I osr/interfaces/mainscreen/craftscreen.simba} | ||
{$IFNDEF WL_FURNITUREBUILDER_INCLUDED} {$I osr/interfaces/mainscreen/furniturebuilder.simba} | ||
{$IFNDEF ANDREW_MUSHTREE_INCLUDED} {$I osr/interfaces/mainscreen/mushtree.simba} | ||
|
||
{$SCOPEDENUMS OFF} | ||
|
||
{$ELSE}{$ENDIF} | ||
{$ELSE}{$ENDIF} | ||
{$ELSE}{$ENDIF} | ||
{$ELSE}{$ENDIF} | ||
{$ELSE}{$ENDIF} | ||
{$ELSE}{$ENDIF} |
Oops, something went wrong.