﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

[RequireComponent(typeof(LayoutElement))]
public class UIInventoryItem : MonoBehaviour
{
    private void Awake()
    {
        GetComponent<LayoutElement>().ignoreLayout = true;
    }
}
