mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 03:32:47 +00:00
15 lines
326 B
C#
15 lines
326 B
C#
using QSB.ItemSync.WorldObjects.Items;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QSB.Player;
|
|
|
|
public partial class PlayerInfo
|
|
{
|
|
public bool InDreamWorld { get; set; }
|
|
public QSBDreamLanternItem AssignedSimulationLantern { get; set; }
|
|
}
|