11 lines
150 B
C#
11 lines
150 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2.HudOverlay;
|
||
|
|
||
|
public struct OverlayCreationParams
|
||
|
{
|
||
|
public GameObject prefab;
|
||
|
|
||
|
public string childLocatorEntry;
|
||
|
}
|