unity-atoms/Examples/Assets/Test/IntPairResponse.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

16 lines
385 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityAtoms.BaseAtoms;
[CreateAssetMenu(menuName = "Unity Atoms/IntPairResponse", fileName = "IntPairResponse")]
public class IntPairResponse : IntPairAction
{
public override void Do(IntPair value)
{
var a = value;
// Debug.Log(value.Item1 + ", " + value.Item2);
}
}