22 lines
345 B
C#
22 lines
345 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class SingleMaterialMesh
|
||
|
{
|
||
|
public Mesh mesh;
|
||
|
public Material material;
|
||
|
|
||
|
public SingleMaterialMesh( Mesh mesh, Material material = null )
|
||
|
{
|
||
|
this.mesh = mesh;
|
||
|
this.material = material;
|
||
|
}
|
||
|
}
|
||
|
}
|