using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RobloxFiles { /// /// Interface which represents a RobloxFile implementation. /// public interface IRobloxFile { Instance Contents { get; } void ReadFile(byte[] buffer); } }