Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BallPassThroughEvent.cs
Go to the documentation of this file.
1namespace Terraria.Physics;
2
4{
5 public readonly Tile Tile;
6
7 public readonly Entity Entity;
8
9 public readonly BallPassThroughType Type;
10
11 public readonly float TimeScale;
12
13 public BallPassThroughEvent(float timeScale, Tile tile, Entity entity, BallPassThroughType type)
14 {
15 Tile = tile;
16 Entity = entity;
17 Type = type;
18 TimeScale = timeScale;
19 }
20}
BallPassThroughEvent(float timeScale, Tile tile, Entity entity, BallPassThroughType type)