Advertisement
dronkowitz

LoadMenu.cs

Jun 23rd, 2021 (edited)
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using TMPro;
  5.  
  6. public class LoadMenu : MainMenu
  7. {
  8.     public SaveSlot[] saveSlots;
  9.  
  10.     void Start()
  11.     {
  12.         for(int i = 0; i < saveSlots.Length; i++)
  13.         {
  14.             saveSlots[i].SetSlot(i);
  15.         }
  16.  
  17.        
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement