This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace TriangleNet.IO
{
// Token: 0x02000028 RID: 40
public interface IMeshFormat
{
// Token: 0x06000142 RID: 322
Mesh Import(string filename);
// Token: 0x06000143 RID: 323
void Write(Mesh mesh, string filename);
}
}