tModLoader v0.11.8.9
A mod to make and play Terraria mods
CustomModDataException.cs
Go to the documentation of this file.
1using System;
2using System.IO;
3
5{
7 {
8 public readonly string modName;
9
10 public CustomModDataException(Mod mod, string message, Exception inner) : base(message, inner) {
11 this.modName = mod.Name;
12 }
13 }
14}
CustomModDataException(Mod mod, string message, Exception inner)
Mod is an abstract class that you will override. It serves as a central place from which the mod's co...
Definition: Mod.cs:25
virtual string Name
Stores the name of the mod. This name serves as the mod's identification, and also helps with saving ...
Definition: Mod.cs:42