Skip to content

Commit e9da18f

Browse files
committed
Made classes public.
1 parent ac4b66d commit e9da18f

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

LibIPS.NET/Creator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.IO;
77
namespace CodeIsle.LibIpsNet
88
{
9-
class Creator
9+
public class Creator
1010
{
1111

1212
// Known situations where this function does not generate an optimal patch:

LibIPS.NET/Exceptions/Ips16MBException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CodeIsle.LibIpsNet.Exceptions
88
{
9-
class Ips16MBException: ApplicationException
9+
public class Ips16MBException: ApplicationException
1010
{
1111

1212
}

LibIPS.NET/Exceptions/IpsIdenticalException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CodeIsle.LibIpsNet.Exceptions
88
{
9-
class IpsIdenticalException: ApplicationException
9+
public class IpsIdenticalException: ApplicationException
1010
{
1111
}
1212
}

LibIPS.NET/Exceptions/IpsInvalidException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CodeIsle.LibIpsNet.Exceptions
88
{
9-
class IpsInvalidException: ApplicationException
9+
public class IpsInvalidException : ApplicationException
1010
{
1111
}
1212
}

LibIPS.NET/Exceptions/IpsNotThisException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CodeIsle.LibIpsNet.Exceptions
88
{
9-
class IpsNotThisException: ApplicationException
9+
public class IpsNotThisException: ApplicationException
1010
{
1111
}
1212
}

LibIPS.NET/Exceptions/IpsScrambledException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CodeIsle.LibIpsNet.Exceptions
88
{
9-
class IpsScrambledException: ApplicationException
9+
public class IpsScrambledException: ApplicationException
1010
{
1111
}
1212
}

LibIPS.NET/Patcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using CodeIsle.LibIpsNet.Utils;
77
namespace CodeIsle.LibIpsNet
88
{
9-
class Patcher
9+
public class Patcher
1010
{
1111
public const string PatchText = "PATCH";
1212
public const int EndOfFile = 0x454F46;

LibIPS.NET/Studier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using CodeIsle.LibIpsNet.Utils;
77
namespace CodeIsle.LibIpsNet
88
{
9-
class Studier
9+
public class Studier
1010
{
1111
public enum IpsError
1212
{

0 commit comments

Comments
 (0)