9 lines
192 B
C#
9 lines
192 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public static class DataScript
|
||
|
{
|
||
|
public static List<GameObject> PlayerEquipment = new List<GameObject>();
|
||
|
}
|