11 lines
193 B
C#
11 lines
193 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class InventorySaveData
|
|
{
|
|
public List<ItemSaveData> inventoryContents;
|
|
}
|