24 lines
387 B
C#
24 lines
387 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Godot;
|
|
using System;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
{
|
|
public class MeshSurface
|
|
{
|
|
public Mesh mesh;
|
|
public Material material;
|
|
public int index;
|
|
|
|
public MeshSurface( Mesh mesh, Material material, int index = 0 )
|
|
{
|
|
this.index = index;
|
|
this.mesh = mesh;
|
|
this.material = material;
|
|
}
|
|
}
|
|
}
|