You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
892 B
C#
35 lines
892 B
C#
using NetMFAPatcher.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using NetMFAPatcher.MMFParser.ChunkLoaders;
|
|
using static NetMFAPatcher.MMFParser.Data.ChunkList;
|
|
|
|
namespace NetMFAPatcher.MMFParser.ChunkLoaders
|
|
{
|
|
class ObjectNames : ChunkLoader//Fucking trash
|
|
{
|
|
public override void Print(bool ext)
|
|
{
|
|
|
|
}
|
|
|
|
public override void Read()
|
|
{
|
|
var start = Reader.Tell();
|
|
var endpos = start + Chunk.Size;
|
|
while(true)
|
|
{
|
|
if (Reader.Tell() >= endpos+4) break;
|
|
|
|
Console.WriteLine(Reader.ReadWideString());
|
|
}
|
|
|
|
}
|
|
public ObjectNames(ByteIO reader) : base(reader) { }
|
|
public ObjectNames(Chunk chunk) : base(chunk) { }
|
|
}
|
|
}
|