Files
BITFALL/Assets/MagicaCloth2/Scripts/Core/Interface/IDataValidate.cs
CortexCore 8acd61ea57 11
2024-03-18 18:20:23 +08:00

15 lines
281 B
C#

// Magica Cloth 2.
// Copyright (c) 2023 MagicaSoft.
// https://magicasoft.jp
namespace MagicaCloth2
{
/// <summary>
/// 対象データの検証を行うインターフェース
/// </summary>
interface IDataValidate
{
void DataValidate();
}
}