14 lines
286 B
C#
14 lines
286 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.Story.UI
|
|
{
|
|
public class StoryBlockUIBase : MonoBehaviour
|
|
{
|
|
public RectTransform blockRect;
|
|
public RectTransform inPort;
|
|
public RectTransform outPort;
|
|
}
|
|
}
|