blob: 9fb3771ef434de67a36702b12f0e96018b41f7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using NW4RTools;
namespace TestApp {
class MainClass {
public static void Main(string[] args) {
//byte[] file = System.IO.File.ReadAllBytes("/home/me/Games/Newer/miscStuff/CS_W1/g3d/model.brres");
byte[] file = System.IO.File.ReadAllBytes("/mnt/h/ISOs/NSMBWii/ais0.1.3/model.brres");
ResFile rf = BrresReader.LoadFile(file);
}
}
}
|