rj-action-library/Runtime/Procedural/Mesh/Modifiers/MeshGeometryModifier.cs

16 lines
238 B
C#

using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
public class MeshGeometryModifier
{
public virtual MeshGeometry Modify( MeshGeometry mg ){ return mg; }
}
}