mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 00:32:43 +00:00
10 lines
197 B
C#
10 lines
197 B
C#
using UnityEngine;
|
|
|
|
namespace QSB.Player;
|
|
|
|
public partial class PlayerInfo
|
|
{
|
|
public int CurrentCharacterDialogueTreeId { get; set; } = -1;
|
|
public GameObject CurrentDialogueBox { get; set; }
|
|
}
|