Files
butchers-games-test/Assets/Scripts/Game/Ambiance/SpecialMatDef.cs
T
Boris Nikolaev 5f1e94b653 add project files
2026-08-14 01:58:31 +03:00

16 lines
185 B
C#

using System;
using UnityEngine;
namespace Ambiance
{
[Serializable]
public class SpecialMatDef
{
public string id;
public Material materialRef;
public bool flippable;
}
}