forked from mirrors/NBTExplorer
Changing namespace to new project
This commit is contained in:
parent
7127355349
commit
97116bd195
31 changed files with 31 additions and 31 deletions
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
|
||||
public interface IBlock
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public struct BlockKey : IEquatable<BlockKey>
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
/*public interface IBlockManager : IBlockContainer
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public class BlockRef : IBlock
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -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>
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
using System.IO;
|
||||
using Ionic.Zlib;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
class ChunkFile
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
|
||||
public interface IChunk : IBlockContainer
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public struct ChunkKey : IEquatable<ChunkKey>
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
|
||||
public class ChunkManager : IChunkContainer, IChunkCache, IEnumerable<ChunkRef>
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map.NBT
|
||||
namespace Substrate.Map.NBT
|
||||
{
|
||||
class JSONSerializer
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map.NBT
|
||||
namespace Substrate.Map.NBT
|
||||
{
|
||||
public abstract class NBTSchemaNode
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map.NBT {
|
||||
namespace Substrate.Map.NBT {
|
||||
|
||||
using Map.Utility;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
using System.Text.RegularExpressions;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -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>
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@ using System.IO;
|
|||
using Ionic.Zlib;
|
||||
using System.Collections;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public class RegionFile : IDisposable {
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public struct RegionKey : IEquatable<RegionKey>
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public class RegionManager
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NBToolkit.Map.Utility
|
||||
namespace Substrate.Map.Utility
|
||||
{
|
||||
public interface ICopyable <T>
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace NBToolkit.Map
|
||||
namespace Substrate.Map
|
||||
{
|
||||
public class World
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue