BITFALL/Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs

15 lines
263 B
C#

// Magica Cloth 2.
// Copyright (c) 2023 MagicaSoft.
// https://magicasoft.jp
namespace MagicaCloth2
{
/// <summary>
/// データカウントを返すインターフェース
/// </summary>
interface ICount
{
int Count();
}
}