custom-chatbot / data /IdleAction.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
367 Bytes
using System;
using System.Runtime.InteropServices;
using Photon.Deterministic;
namespace Quantum
{
[Serializable]
[AssetObjectConfig(GenerateLinkingScripts = true, GenerateAssetCreateMenu = false, GenerateAssetResetMethod = false)]
public partial class IdleAction : AIAction
{
public override unsafe void Update(Frame frame, EntityRef entity)
{
}
}
}