added tester

This commit is contained in:
mm00
2025-01-27 19:25:19 +01:00
parent 146a3992ce
commit 88a4515c8d
5 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
using BlendFile;
var reader = new Reader("cube.blend");
reader.Read();
foreach (var obj in reader.Objects)
{
Console.WriteLine(obj.GetType());
Console.WriteLine(obj.ToString());
}