15 lines
263 B
C#
15 lines
263 B
C#
|
// Magica Cloth 2.
|
|||
|
// Copyright (c) 2023 MagicaSoft.
|
|||
|
// https://magicasoft.jp
|
|||
|
|
|||
|
namespace MagicaCloth2
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 対象の有効性を返すインターフェース
|
|||
|
/// </summary>
|
|||
|
interface IValid
|
|||
|
{
|
|||
|
bool IsValid();
|
|||
|
}
|
|||
|
}
|