custom-chatbot / data /HFSM.TrueDecision.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
351 Bytes
using System;
using Photon.Deterministic;
namespace Quantum
{
[Serializable]
[AssetObjectConfig(GenerateLinkingScripts = true, GenerateAssetCreateMenu = false, GenerateAssetResetMethod = false)]
public partial class TrueDecision : HFSMDecision
{
public override unsafe bool Decide(Frame frame, EntityRef entity)
{
return true;
}
}
}