ReSharper code reformat to match naming conventions and stuff

This commit is contained in:
Lucas Nicodemus 2011-12-30 14:38:04 -07:00
parent 1147788154
commit c6abbfe4d2
45 changed files with 11639 additions and 11342 deletions

View file

@ -20,20 +20,21 @@ using System.IO;
namespace TShockAPI
{
/// <summary>
/// Derived objects can be written to and read from streams.
/// </summary>
public interface IPackable
{
/// <summary>
/// Writes object information to the stream
/// </summary>
/// <param name="stream">Stream to write to</param>
void Pack(Stream stream);
/// <summary>
/// Reads object information from the stream
/// </summary>
/// <param name="stream">Stream to read from</param>
void Unpack(Stream stream);
}
}
/// <summary>
/// Derived objects can be written to and read from streams.
/// </summary>
public interface IPackable
{
/// <summary>
/// Writes object information to the stream
/// </summary>
/// <param name="stream">Stream to write to</param>
void Pack(Stream stream);
/// <summary>
/// Reads object information from the stream
/// </summary>
/// <param name="stream">Stream to read from</param>
void Unpack(Stream stream);
}
}