Files
flowframes/Code/Data/AI.cs

31 lines
836 B
C#
Raw Normal View History

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;
public bool supportsAnyExp;
2020-11-23 16:51:05 +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;
supportsAnyExp = supportsAnyExpArg;
2020-11-23 16:51:05 +01:00
}
}
}