16 lines
185 B
C#
16 lines
185 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Ambiance
|
|
{
|
|
[Serializable]
|
|
public class SpecialMatDef
|
|
{
|
|
public string id;
|
|
|
|
public Material materialRef;
|
|
|
|
public bool flippable;
|
|
}
|
|
}
|