Files
Continentis/Assets/Scripts/ScriptExtensions/CommandQueue/CommandContext.cs
SoulliesOfficial 9b1b5ca93f initial
2025-10-03 00:02:43 -04:00

17 lines
493 B
C#

using UnityEngine;
using System.Collections.Generic;
using UnityEngine;
namespace SoulliesFramework.General
{
/// <summary>
/// 指令上下文 (Command Context)
/// 包含了指令执行时可能需要的所有游戏状态信息。
/// 这个对象在指令组开始执行时创建,并被传递给每一个子指令。
/// </summary>
public class CommandContext
{
public Dictionary<string, object> sharedInfo = new Dictionary<string, object>();
}
}