// Magica Cloth 2.
// Copyright (c) 2023 MagicaSoft.
// https://magicasoft.jp
using UnityEngine;
namespace MagicaCloth2
{
///
/// MagicaClothのMonoBehaviour基礎クラス
/// すべてのコンポーネントはここから派生する
///
public abstract class ClothBehaviour : MonoBehaviour
{
///
/// Hash code for checking changes when editing.
///
///
public virtual int GetMagicaHashCode()
{
return 0;
}
}
}