Elin Modding Docs Doc
Loading...
Searching...
No Matches
GoalVisitorEnemy.cs
1
using
System;
2
using
System.Collections.Generic;
3
4
// Token: 0x02000236 RID: 566
5
public
class
GoalVisitorEnemy
:
Goal
6
{
7
// Token: 0x1700041A RID: 1050
8
// (get) Token: 0x06000FD7 RID: 4055 RVA: 0x00072037 File Offset: 0x00070237
9
public
override
int
MaxRestart
10
{
11
get
12
{
13
return
10;
14
}
15
}
16
17
// Token: 0x06000FD8 RID: 4056 RVA: 0x0007203B File Offset: 0x0007023B
18
public
override
IEnumerable<
AIAct
.Status> Run()
19
{
20
yield
return
base.Do(
new
AI_GotoHearth
(),
null
);
21
yield
return
base.Do(
new
AI_AttackHome
(),
null
);
22
yield
return
base.Restart();
23
yield
break
;
24
}
25
}
AI_AttackHome
Definition
AI_AttackHome.cs:6
AI_GotoHearth
Definition
AI_GotoHearth.cs:6
AIAct
Definition
AIAct.cs:7
Goal
Definition
Goal.cs:5
GoalVisitorEnemy
Definition
GoalVisitorEnemy.cs:6
Elin
GoalVisitorEnemy.cs
Generated by
1.12.0