Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
AIWork_Explore.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
3public class AIWork_Explore : AIWork
4{
5 public override Work_Type WorkType => Work_Type.Explore;
6
7 public override IEnumerable<Status> Run()
8 {
9 yield return DoIdle();
10 }
11}
Status DoIdle(int repeat=3)
Definition: AIAct.cs:523
override Work_Type WorkType
override IEnumerable< Status > Run()
Definition: AIWork.cs:5
Work_Type
Definition: AIWork.cs:7