mirror of
https://github.com/zoriya/Mimireisu.git
synced 2025-12-06 06:36:09 +00:00
14 lines
242 B
C#
14 lines
242 B
C#
using UnityEngine;
|
|
|
|
public class ActionItem
|
|
{
|
|
public DistanceJoint2D joint;
|
|
public GameObject line;
|
|
|
|
public ActionItem(DistanceJoint2D joint, GameObject line)
|
|
{
|
|
this.joint = joint;
|
|
this.line = line;
|
|
}
|
|
}
|