Skip to content

Commit

Permalink
Fix compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Nov 3, 2024
1 parent 2ab8647 commit e9dff59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Assets/Scripts/Cgs/Menu/GamesManagementMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
using UnityEngine.EventSystems;
using UnityEngine.UI;
using UnityExtensionMethods;
#if !UNITY_WEBGL
using System;
using UnityEngine.Events;
#endif
#if !UNITY_ANDROID && !UNITY_IOS
using SimpleFileBrowser;
#endif
Expand Down Expand Up @@ -58,6 +62,7 @@ public class GamesManagementMenu : SelectionPanel
#if !UNITY_WEBGL
private DecisionModal ImportModal =>
_importModal ??= Instantiate(gameImportModalPrefab).GetOrAddComponent<DecisionModal>();

private DecisionModal _importModal;
#endif

Expand Down

0 comments on commit e9dff59

Please sign in to comment.