Switch root namespace to "RobloxFiles"
In case there are any future libraries written for Roblox in C#, I want to avoid running into any namespace collisions. Its best to keep everything pertaining to this project nested in its own unique namespace.
This commit is contained in:
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Text;
|
||||
using LZ4;
|
||||
|
||||
namespace Roblox.BinaryFormat
|
||||
namespace RobloxFiles.BinaryFormat
|
||||
{
|
||||
public class RobloxBinaryChunk
|
||||
{
|
||||
|
@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace Roblox.BinaryFormat
|
||||
namespace RobloxFiles.BinaryFormat
|
||||
{
|
||||
public class RobloxBinaryReader : BinaryReader
|
||||
{
|
||||
|
@ -2,9 +2,10 @@
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using Roblox.BinaryFormat.Chunks;
|
||||
|
||||
namespace Roblox.BinaryFormat
|
||||
using RobloxFiles.BinaryFormat.Chunks;
|
||||
|
||||
namespace RobloxFiles.BinaryFormat
|
||||
{
|
||||
public class BinaryRobloxFile : IRobloxFile
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace Roblox.BinaryFormat.Chunks
|
||||
namespace RobloxFiles.BinaryFormat.Chunks
|
||||
{
|
||||
public class INST
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Roblox.BinaryFormat.Chunks
|
||||
namespace RobloxFiles.BinaryFormat.Chunks
|
||||
{
|
||||
public class META
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace Roblox.BinaryFormat.Chunks
|
||||
namespace RobloxFiles.BinaryFormat.Chunks
|
||||
{
|
||||
public class PRNT
|
||||
{
|
||||
|
@ -1,11 +1,11 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
using Roblox.Enums;
|
||||
using Roblox.DataTypes;
|
||||
using Roblox.DataTypes.Utility;
|
||||
using RobloxFiles.Enums;
|
||||
using RobloxFiles.DataTypes;
|
||||
using RobloxFiles.DataTypes.Utility;
|
||||
|
||||
namespace Roblox.BinaryFormat.Chunks
|
||||
namespace RobloxFiles.BinaryFormat.Chunks
|
||||
{
|
||||
public class PROP
|
||||
{
|
||||
|
Reference in New Issue
Block a user