Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Collections.Generic;
- [System.Serializable]
- public class EnvironmentData
- {
- public List<string> pickedupItems;
- public EnvironmentData(List<string> _pickedupItems)
- {
- pickedupItems = _pickedupItems;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement