Fixed some bugs, generally refining stuff.
This commit is contained in:
17
Interfaces/IRobloxFile.cs
Normal file
17
Interfaces/IRobloxFile.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
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);
|
||||
}
|
||||
}
|
15
Interfaces/IXmlPropertyToken.cs
Normal file
15
Interfaces/IXmlPropertyToken.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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 ReadToken(Property prop, XmlNode token);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user