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

using BehaviorDesigner.Runtime;
using BehaviorDesigner.Runtime.Tasks;

namespace BansheeGz.BGDatabase
{
    [TaskCategory("BansheeGz/Get")]
    [TaskName("BGDatabase: Get float")]
    [TaskDescription("Get float cell value from database")]
    public class BGBDGetFloat : BGBDGetValue<float>
    {
        [RequiredField]
        [Tooltip("The variable to store the result")]
        public SharedFloat storeResult;

        public override SharedVariable<float> varToAssign => storeResult;
    }
}