rokojori_action_library/Runtime/Procedural/Mesh/Modifiers/MeshGeometryModifier.cs

17 lines
265 B
C#

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