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


using MaxyGames.uNode;

namespace BansheeGz.BGDatabase
{
    [NodeMenu("BansheeGz", "DB: Delete row")]
    public class BGUNDeleteRow : BGUNRowA, IFlowNode
    {
        public void Execute(object graph)
        {
            Entity.Delete();
        }
    }
}