mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-21 21:50:12 +08:00
13 lines
294 B
C#
13 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFight.Model.Scripts;
|
|
|
|
public class CombatScript
|
|
{
|
|
public record Command(string Name, Dictionary<string, object> Parameters);
|
|
|
|
} |