Move ctor initializers to their own line.

This commit is contained in:
Paul Chote
2019-06-08 12:59:02 +01:00
committed by reaperrr
parent 979ed1b140
commit 674155a8dd
33 changed files with 90 additions and 44 deletions

View File

@@ -19,8 +19,11 @@ namespace OpenRA.Platforms.Default
{
class Sdl2HardwareCursorException : Exception
{
public Sdl2HardwareCursorException(string message) : base(message) { }
public Sdl2HardwareCursorException(string message, Exception innerException) : base(message, innerException) { }
public Sdl2HardwareCursorException(string message)
: base(message) { }
public Sdl2HardwareCursorException(string message, Exception innerException)
: base(message, innerException) { }
}
sealed class Sdl2HardwareCursor : IHardwareCursor