2020-11-23 16:51:05 +01:00
|
|
|
|
using Flowframes.IO;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Flowframes.Data
|
|
|
|
|
|
{
|
|
|
|
|
|
public struct AI
|
|
|
|
|
|
{
|
|
|
|
|
|
public string aiName;
|
|
|
|
|
|
public string aiNameShort;
|
|
|
|
|
|
public string friendlyName;
|
|
|
|
|
|
public string description;
|
|
|
|
|
|
public FlowPackage pkg;
|
2020-12-08 16:49:47 +01:00
|
|
|
|
public bool supportsAnyExp;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
|
2021-01-21 11:39:08 +01:00
|
|
|
|
public AI(string aiNameArg, string friendlyNameArg, string descArg, FlowPackage pkgArg, bool supportsAnyExpArg)
|
2020-11-23 16:51:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
aiName = aiNameArg;
|
|
|
|
|
|
aiNameShort = aiNameArg.Split(' ')[0];
|
|
|
|
|
|
aiNameShort = aiNameArg.Split('_')[0];
|
|
|
|
|
|
friendlyName = friendlyNameArg;
|
|
|
|
|
|
description = descArg;
|
|
|
|
|
|
pkg = pkgArg;
|
2020-12-08 16:49:47 +01:00
|
|
|
|
supportsAnyExp = supportsAnyExpArg;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|