Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NoSuitableGraphicsDeviceException.cs
Go to the documentation of this file.
1using System;
3
5
8{
12
13 public NoSuitableGraphicsDeviceException(string message)
14 : base(message)
15 {
16 }
17
18 public NoSuitableGraphicsDeviceException(string message, Exception inner)
19 : base(message, inner)
20 {
21 }
22
27}
NoSuitableGraphicsDeviceException(SerializationInfo info, StreamingContext context)