forked from mirrors/NBTExplorer
Removed unnecessary nested namespace.
This commit is contained in:
parent
334ce12773
commit
2ac3252702
50 changed files with 74 additions and 74 deletions
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
|
||||
public interface IBlock
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public struct BlockKey : IEquatable<BlockKey>
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
/*public interface IBlockManager : IBlockContainer
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class BlockRef : IBlock
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
using Utility;
|
||||
|
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Text.RegularExpressions;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class ChunkList : IEnumerable<ChunkRef>
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
using System.IO;
|
||||
using Ionic.Zlib;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
class ChunkFile
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
|
||||
public interface IChunk : IBlockContainer
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public struct ChunkKey : IEquatable<ChunkKey>
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
|
||||
public class ChunkManager : IChunkContainer, IChunkCache, IEnumerable<ChunkRef>
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityArrow : EntityThrowable
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityChicken : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityCow : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityCreeper : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityEgg : EntityThrowable
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityGhast : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityGiant : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityMonster : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityPainting : Entity
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityPig : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityPigZombie : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntitySheep : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntitySkeleton : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntitySlime : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntitySnowball : EntityThrowable
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntitySpider : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityWolf : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Entities
|
||||
namespace Substrate.Entities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class EntityZombie : EntityMob
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.NBT
|
||||
namespace Substrate.NBT
|
||||
{
|
||||
class JSONSerializer
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
|
||||
namespace Substrate.Map.NBT
|
||||
namespace Substrate.NBT
|
||||
{
|
||||
using Map.Utility;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.NBT {
|
||||
namespace Substrate.NBT {
|
||||
|
||||
using Map.Utility;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.NBT
|
||||
namespace Substrate.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 Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
using NBT;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Text.RegularExpressions;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class RegionList : IEnumerable<Region>
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@ using System.IO;
|
|||
using Ionic.Zlib;
|
||||
using System.Collections;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class RegionFile : IDisposable {
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public struct RegionKey : IEquatable<RegionKey>
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class RegionManager
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntityChest : TileEntity, IItemContainer
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntityFurnace : TileEntity, IItemContainer
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntityMobSpawner : TileEntity
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntityMusic : TileEntity
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntitySign : TileEntity
|
||||
{
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.TileEntities
|
||||
namespace Substrate.TileEntities
|
||||
{
|
||||
using Substrate.Map.NBT;
|
||||
using Substrate.NBT;
|
||||
|
||||
public class TileEntityTrap : TileEntity, IItemContainer
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Utility
|
||||
namespace Substrate.Utility
|
||||
{
|
||||
public interface ICopyable <T>
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections;
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Substrate.Map.Utility
|
||||
namespace Substrate.Utility
|
||||
{
|
||||
public class NibbleArray : ICopyable<NibbleArray>
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Text;
|
||||
using System.IO;
|
||||
|
||||
namespace Substrate.Map
|
||||
namespace Substrate
|
||||
{
|
||||
public class World
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue