Cleaning up some things.
This commit is contained in:
.gitignore
BinaryFormat
Interfaces
RobloxFile.csRobloxFileFormat.csprojTree
XmlFormat
IO
PropertyTokens
IXmlPropertyToken.cs
XmlRobloxFile.csTokens
Axes.csBinaryString.csBoolean.csBrickColor.csCFrame.csColor3.csColor3uint8.csColorSequence.csContent.csDouble.csEnum.csFaces.csFloat.csInt.csInt64.csNumberRange.csNumberSequence.csPhysicalProperties.csRay.csRect.csRef.csSharedString.csString.csUDim.csUDim2.csVector2.csVector3.csVector3int16.cs
XmlPropertyTokens.cs@ -1,20 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RobloxFiles
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface which represents a RobloxFile implementation.
|
||||
/// </summary>
|
||||
public interface IRobloxFile
|
||||
{
|
||||
Instance Contents { get; }
|
||||
|
||||
void ReadFile(byte[] buffer);
|
||||
void WriteFile(Stream stream);
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml;
|
||||
|
||||
namespace RobloxFiles.XmlFormat
|
||||
{
|
||||
public interface IXmlPropertyToken
|
||||
{
|
||||
string Token { get; }
|
||||
|
||||
bool ReadProperty(Property prop, XmlNode token);
|
||||
void WriteProperty(Property prop, XmlDocument doc, XmlNode node);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user