mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 11:29:18 +08:00
18 lines
337 B
C#
18 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public sealed class MeshFilter : Component
|
|
{
|
|
public PPtr<Mesh> m_Mesh;
|
|
|
|
public MeshFilter(ObjectReader reader) : base(reader)
|
|
{
|
|
m_Mesh = new PPtr<Mesh>(reader);
|
|
}
|
|
}
|
|
}
|