Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EntitySource_Buff.cs
Go to the documentation of this file.
2
4{
5 public readonly Entity Entity;
6
7 public readonly int BuffId;
8
9 public readonly int BuffIndex;
10
11 public EntitySource_Buff(Entity entity, int buffId, int buffIndex)
12 {
13 Entity = entity;
14 BuffId = buffId;
15 BuffIndex = buffIndex;
16 }
17}
EntitySource_Buff(Entity entity, int buffId, int buffIndex)