Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Fx.cs
Go to the documentation of this file.
3
5
6internal static class Fx
7{
8 [Conditional("DEBUG")]
9 public static void Assert([DoesNotReturnIf(false)] bool condition, string message)
10 {
11 }
12
13 [Conditional("DEBUG")]
15 public static void Assert(string message)
16 {
17 }
18}
static void Assert([DoesNotReturnIf(false)] bool condition, string message)
Definition Fx.cs:9
static void Assert(string message)
Definition Fx.cs:15