2019-02-04 19:30:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-05-17 12:08:06 +00:00
|
|
|
|
using System.IO;
|
2019-02-04 19:30:33 +00:00
|
|
|
|
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; }
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
2019-02-04 19:30:33 +00:00
|
|
|
|
void ReadFile(byte[] buffer);
|
2019-05-17 12:08:06 +00:00
|
|
|
|
void WriteFile(Stream stream);
|
2019-02-04 19:30:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|