Changing namespace to new project

This commit is contained in:
Justin Aquadro 2011-04-06 07:40:38 +00:00
parent 7127355349
commit 97116bd195
31 changed files with 31 additions and 31 deletions

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;
using Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public interface IBlock

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public struct BlockKey : IEquatable<BlockKey>
{

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
/*public interface IBlockManager : IBlockContainer
{

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class BlockRef : IBlock
{

View file

@ -1,7 +1,7 @@
using System;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;
using Utility;

View file

@ -5,7 +5,7 @@ using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class ChunkList : IEnumerable<ChunkRef>
{

View file

@ -4,7 +4,7 @@ using System.Text;
using System.IO;
using Ionic.Zlib;
namespace NBToolkit.Map
namespace Substrate.Map
{
class ChunkFile
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
public interface IChunk : IBlockContainer

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public struct ChunkKey : IEquatable<ChunkKey>
{

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class ChunkManager : IChunkContainer, IChunkCache, IEnumerable<ChunkRef>

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;
using Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;
using Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.NBT
namespace Substrate.Map.NBT
{
class JSONSerializer
{

View file

@ -4,7 +4,7 @@ using System.Text;
using System.IO;
using System.IO.Compression;
namespace NBToolkit.Map.NBT
namespace Substrate.Map.NBT
{
using Map.Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.NBT
namespace Substrate.Map.NBT
{
public abstract class NBTSchemaNode
{

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.NBT {
namespace Substrate.Map.NBT {
using Map.Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.NBT
namespace Substrate.Map.NBT
{
public delegate void MissingTagHandler (Object o, TagEventArgs e);
public delegate void InvalidTagTypeHandler (Object o, TagEventArgs e);

View file

@ -4,7 +4,7 @@ using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;

View file

@ -5,7 +5,7 @@ using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class RegionList : IEnumerable<Region>
{

View file

@ -5,7 +5,7 @@ using System.IO;
using Ionic.Zlib;
using System.Collections;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class RegionFile : IDisposable {

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
public struct RegionKey : IEquatable<RegionKey>
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class RegionManager
{

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;
using Utility;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map
namespace Substrate.Map
{
using NBT;

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.Utility
namespace Substrate.Map.Utility
{
public interface ICopyable <T>
{

View file

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.Utility
namespace Substrate.Map.Utility
{
public class NibbleArray : ICopyable<NibbleArray>
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NBToolkit.Map
namespace Substrate.Map
{
public class World
{