17 lines
359 B
C#
17 lines
359 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using System;
|
|
|
|
namespace Obi
|
|
{
|
|
[Serializable]
|
|
public class ObiPinConstraintsData : ObiConstraints<ObiPinConstraintsBatch>
|
|
{
|
|
|
|
public override ObiPinConstraintsBatch CreateBatch(ObiPinConstraintsBatch source = null)
|
|
{
|
|
return new ObiPinConstraintsBatch();
|
|
}
|
|
}
|
|
}
|