Advertisement
evelynshilosky

EnvironmentData - Part 26

Nov 17th, 2023 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using System.Collections.Generic;
  2.  
  3. [System.Serializable]
  4. public class EnvironmentData
  5. {
  6.  
  7.     public List<string> pickedupItems;
  8.  
  9.  
  10.     public EnvironmentData(List<string> _pickedupItems)
  11.     {
  12.         pickedupItems = _pickedupItems;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement