Skip to content

Commit

Permalink
fix: fix optional.simba paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed Jan 22, 2024
1 parent 0fe123f commit 3b9f414
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions optional.simba
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ However, this is not really recommended. You should include only the files you r
// 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}
{$IFNDEF WL_ANVIL_INCLUDED} {$I optional/interfaces/mainscreen/anvil.simba}
{$IFNDEF WL_TANSCREEN_INCLUDED} {$I optional/interfaces/mainscreen/tanscreen.simba}
{$IFNDEF AERO_SILVERSCREEN_INCLUDED} {$I optional/interfaces/mainscreen/silverscreen.simba}
{$IFNDEF AERO_CRAFTSCREEN_INCLUDED} {$I optional/interfaces/mainscreen/craftscreen.simba}
{$IFNDEF WL_FURNITUREBUILDER_INCLUDED} {$I optional/interfaces/mainscreen/furniturebuilder.simba}
{$IFNDEF ANDREW_MUSHTREE_INCLUDED} {$I optional/interfaces/mainscreen/mushtree.simba}

{$SCOPEDENUMS OFF}

Expand Down

0 comments on commit 3b9f414

Please sign in to comment.