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;
|
2021-03-11 12:58:18 +01:00
|
|
|
|
public string pkgDir;
|
2020-12-08 16:49:47 +01:00
|
|
|
|
public bool supportsAnyExp;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
|
2021-03-11 12:58:18 +01:00
|
|
|
|
public AI(string aiNameArg, string friendlyNameArg, string descArg, string pkgDirArg, bool supportsAnyExpArg)
|
2020-11-23 16:51:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
aiName = aiNameArg;
|
2021-02-01 18:05:50 +01:00
|
|
|
|
aiNameShort = aiNameArg.Split(' ')[0].Split('_')[0];
|
2020-11-23 16:51:05 +01:00
|
|
|
|
friendlyName = friendlyNameArg;
|
|
|
|
|
|
description = descArg;
|
2021-03-11 12:58:18 +01:00
|
|
|
|
pkgDir = pkgDirArg;
|
2020-12-08 16:49:47 +01:00
|
|
|
|
supportsAnyExp = supportsAnyExpArg;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|