﻿using UnityEngine;

namespace JLGames.RocketDriver.Editor.Infra
{
    public class ExportSettings : ScriptableObject
    {
        [SerializeField] private ExportPackageSettings m_Settings;

        public ExportPackageSettings Settings => m_Settings;
    }
}