/*
<copyright file="BGGCAddRowDrawer.cs" company="BansheeGz">
    Copyright (c) 2018-2022 All Rights Reserved
</copyright>
*/

using UnityEditor;

namespace BansheeGz.BGDatabase.Editor
{
    [CustomPropertyDrawer(typeof(BGGCAddRow))]
    public class BGGCAddRowDrawer : BGGCTableADrawer<BGGCAddRow>
    {
        protected override void Create()
        {
            base.Create();
            PropEditor("row");
        }
    }
}