the initial commit to the repo.
This commit is contained in:
parent
025c032b8c
commit
1b757591b9
264 changed files with 21882 additions and 0 deletions
23
stoopid.raw/stupid.solutions.enums/AIData.cs
Normal file
23
stoopid.raw/stupid.solutions.enums/AIData.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using EFT;
|
||||
using UnityEngine;
|
||||
|
||||
namespace stupid.solutions.stupid.solutions.enums;
|
||||
|
||||
public class AIData
|
||||
{
|
||||
public string Name;
|
||||
|
||||
public WildSpawnType EnumID;
|
||||
|
||||
public string Description;
|
||||
|
||||
public Color NameColor;
|
||||
|
||||
public AIData(string name, WildSpawnType enumId, string description, Color nameColor)
|
||||
{
|
||||
Name = name;
|
||||
EnumID = enumId;
|
||||
Description = description;
|
||||
NameColor = nameColor;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue